In my application i have added flurry analytic but even after days of adding it. i don’t see any updates on the dashboard. could any one help me on this. thanks in advance,
public static void StartSession(Context context) {
FlurryAgent.onStartSession(context, CommonKeys.APIKey_FLURRY);
FlurryAgent.onEvent("App Started");
}
@Override
protected void onStart() {
// TODO Auto-generated method stub
super.onStart();
FlurryAgent.onStartSession(this, CommonKeys.APIKey_FLURRY);
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
super.onStop();
FlurryAgent.onEndSession(this);
}
i am calling the below line on splash
BaseActivity.StartSession(getApplicationContext());
I have done the integration as recommended by the documentation. I have created a
BaseActivitythat will be extended by my activities. This code works for me…Logs from Flurry can be found in your LogCat and they should look like this: