I'm a bit surprised the documentation of Flurry-Android is so measly. Let's take this example: your application has levels that users complete, how do you log the time that users take for each level to complete?
This is the basic API calls for events:
FlurryAgent.logEvent(String eventId, Map < String, String\> parameters, boolean timed)
FlurryAgent.logEvent(String eventId, boolean timed)
Where should you put levelindex
and how does the timing work? How will the data be presented?