I have already checked out this link and followed the instructions exactly: Can Flurry analytics provide average of integer information?
Have also read the instructions from Flurry, provided when downloading the SDK. I am putting in a "onStartSession()" and "onEndSession()" on every activity in my app and within these "session wrappers" I try to log a timed event, to keep track of how long the user used each activity.
The events get logged in Flurry Analytics, however there is no "Event duration" information available (the clock icon).
Here is my code:
public void onStart(){
super.onStart();
FlurryAgent.onStartSession(this, Flurry.FLURRY_KEY);
FlurryAgent.logEvent(Flurry.ACTIVITY_RADAR, true);
}
public void onStop() {
super.onStop();
FlurryAgent.endTimedEvent(Flurry.ACTIVITY_RADAR);
FlurryAgent.onEndSession(this);
}
Would appreciate some help on this annoying problem! /Martin