Skip to content Skip to sidebar Skip to footer

Flurry - Timed Event Questions

I have some questions related to timed events from Flurry: 1). If I'm using logEvent (String eventId, boolean timed) to log a timed event and never call endTimedEvent(String), what

Solution 1:

According to Flurry iOS 4.3.0 documentation:

If the app is backgrounded prior to ending a timed event, the Flurry SDK will automatically end the timer on the event. endTimedEvent:withParameters: is ignored if called on a previously terminated event.

Solution 2:

You should make a temporary event and try both of these. I assume that the first event will not get logged if the event is never ended. Similarly, I'd guess that the second event would only be logged once and not twice.

Post a Comment for "Flurry - Timed Event Questions"