I wanted to add some analytics functionnalities to my app so I created an account on Flurry and added their SDK to my project. Then I logged some events, normal events and timed ones.
Until here nothing special :) But even after 2 days I can't see any of these events in Flurry's dashboard. I can see the number of sessions so I guess that my app is actually sending something. But no events.
Any idea? I didn't do anything exotic about the code, I register with my ID (which is correct according to that i said previously)
[FlurryAnalytics startSession:flurryKey];
and logged events using :
[FlurryAnalytics logEvent:@"MyEvent"];
I think you are referring to FlurryAnalytics when you say Flurry Events.
OPTION-1:
Please cross check you key and whether you have integrated the latest Flury SDK version for iOS.
OPTION-2:
Please do verify whether you have properly referenced FlurryAnalytics.h
and libFlurryAnalytics.a
Also check whether you have added libFlurryAnalytics.a
to your Link Binaries to Libraries
in your Target Settings
OPTION-3:
Try to login to its website with your login credentials and wait for some more hours.
Moreover, it is not real time service as far as I know. It roughly takes 6-8 hours to show the logged results.
Otherwise you need to contact Flurry Analytics guys as it is really a simple API and there cannot be much of problems that developers could have caused
Hope this helps you.