Search code examples
androidflurry-analytics

Flurry 4.2.0 not working for Android


I am interested in using flurry in my application. I have implemented the flurry 4.2.0 as mentioned in documents. and getting following in logcat:

W/FlurryAgent(28503): FlurryDataSender: report 98ef36e7-8de3-4f37-bb3c-077a95582301 sent. HTTP response: 200

But unable to trace anything on flurry dashboard.

Here is the code i am using.

@Override
protected void onStart() {

    super.onStart();
    FlurryAgent.onStartSession(this, "XXXXXXXXXXXXXXXXXXXX");
    FlurryAgent.setLogEnabled(true);
    FlurryAgent.setLogEvents(true);
    FlurryAgent.setLogLevel(Log.VERBOSE);
    FlurryAgent.logEvent("My Event");
}

@Override
protected void onStop() {

    super.onStop();
    FlurryAgent.onEndSession(this);
}

Solution

  • The Flurry Integration reflection won't be immediate.

    It takes around 24 hours to reflect the changes on Flurry Dashboard.

    Check similar answers here :

    Hope this helps.