Difference between FlurryAgent.logEvent and FlurryAgent.onEvent
Asked Answered
R

3

12

What is the difference between FlurryAgent.logEvent and FlurryAgent.onEvent?

I could not find any documentation on these.

Rotberg answered 13/4, 2011 at 5:24 Comment(0)
B
19

onEvent is deprecated and you should use logEvent in its place. logEvent also introduced two new overridden methods to allow you to track timed events (not available for onEvent):

  • logEvent(String eventId, boolean timed)
  • logEvent(String eventId, Map parameters, boolean timed)

Start Edit

To end a timed event use:

  • endTimedEvent(String eventId)

End Edit

We will be improving our documentation in the near future so that it is easier to find the answers to these types of questions. Thanks for choosing Flurry.

R,

Anthony

Brahman answered 13/4, 2011 at 17:18 Comment(3)
Thank you very much! I had been using logEvent so this is greatRotberg
This is preposterous. The documentation tells you to use onEvent, and when I asked Flurry why my events aren't getting through, I didn't get any response! I will try this method, hope it works better..Heigho
what is difference between timed event and non-timed event ?Deuteranopia
D
1

here is a link to latest flurry documentation

http://support.flurry.com/sdkdocs/android/classcom_1_1flurry_1_1android_1_1_flurry_agent.html

Deuteranopia answered 29/5, 2012 at 5:54 Comment(0)
D
-4

I used Flurry to track the events. You have to first create an account on the Flurry website and register your project name. Then if you want to track a button and how many times that button was pressed, you go to the Flurry site and you can see it there.

There are three types:

  1. Google Analytics
  2. Flurry
  3. Omniture

Omniture is fast because it is a paid service, and the other two are very slow (it may take them 15 hours to show you your results).

Dunkle answered 13/4, 2011 at 5:30 Comment(1)
My question was on the difference of these two methods in FlurryRotberg

© 2022 - 2024 — McMap. All rights reserved.