The Flurry SDK for iOS has a method [Flurry endTimedEvent:@"EVENT_NAME" withParameters:YOUR_NSDictionary]
. Is there an equivalent way to implement this functionality in Android?
I'm aware that you can start a timed event with parameters using FlurryAgent.logEvent("EVENT_NAME", myDictionary, true)
, but I'd like to update the values in the dictionary before ending the event.