2016-08-17 32 views
0

すべて、Android:Flurryダッシュボードが表示されないデータ

私は、分析のために私のAndroidアプリケーションの1つでFlurryを使用しています。 Flurry Portalでアカウントを作成し、APIキーを取得しました。私は「慌てて始める方法」の文書に記載されている手順に従った。アプリケーションを起動してログをチェックすると、イベントがキャプチャされ、データが送信されています。しかし、Flurry Portalでは何も見ることができません。ここに私のコードは、最終行がログにここでのロギングイベント

FlurryAgent.logEvent(getString(R.string.filter_listing_event)); 
FragmentTransaction ft = getFragmentManager().beginTransaction(); 
Fragment prev = getFragmentManager().findFragmentByTag("dialog"); 

については

アプリケーション

public class GlobalClass extends Application{ 

    private static Bus instance = null; 

    @Override public void onCreate() { 
     super.onCreate(); 
     instance = new Bus(); 


     FlurryAgent.setLogEnabled(true); 
     FlurryAgent.setLogEvents(true); 
     FlurryAgent.setLogLevel(Log.INFO); 
     FlurryAgent.init(this,"XXXXXXXXXXX"); 
     Log.i("FLURRY AGENT", "Initialized Flurry Agent"); 
    } 
} 

ログは

08-17 15:28:24.651 17864-17864/? W/FlurryAgent: 'setLogEnabled' method is deprecated. 
08-17 15:28:24.651 17864-17864/? W/FlurryAgent: 'setLogLevel' method is deprecated. 
08-17 15:28:24.671 17864-17878/? E/FlurryAgent: GOOGLE PLAY SERVICES EXCEPTION: com.google.android.gms.common.GooglePlayServicesUtil 
08-17 15:28:24.671 17864-17878/? E/FlurryAgent: There is a problem with the Google Play Services library, which is required for Android Advertising ID support. The Google Play Services library should be integrated in any app shipping in the Play Store that uses analytics or advertising. 
08-17 15:28:24.681 17864-17864/? W/FlurryAgent: 'init' method is deprecated. 
08-17 15:28:24.681 17864-17864/? I/FLURRY AGENT: Initialized FLurry Agent 
08-17 15:28:24.681 17864-17878/? I/FlurryAgent: New main file also not found. returning.. 
08-17 15:28:24.871 17864-17878/? W/FlurryAgent: Flurry session started for context:[email protected] 
08-17 15:28:24.871 17864-17878/? W/FlurryAgent: Flurry session resumed for context:[email protected] 
08-17 15:28:24.871 17864-17878/? E/FlurryAgent: GOOGLE PLAY SERVICES EXCEPTION: com.google.android.gms.common.GooglePlayServicesUtil 
08-17 15:28:24.871 17864-17878/? E/FlurryAgent: There is a problem with the Google Play Services library, which is required for Android Advertising ID support. The Google Play Services library should be integrated in any app shipping in the Play Store that uses analytics or advertising. 
08-17 15:28:24.891 17864-17878/? W/System.err: remove failed: ENOENT (No such file or directory) : /data/user/0/com.test/files/.YFlurrySenderIndex.info.AnalyticsMain 
08-17 15:28:26.281 17864-17889/com.test W/FlurryAgent: Analytics report sent. 

されている分析が送信されますを示しています。しかし、まだ私は慌ただしいポータルで何かを見ることができません。

答えて

関連する問題