Does anyone have any experience using the basic analytics services with the Flurry Analytics SDK?
I have two applications which I am testing this out with. Both are
I had a same problem too and solved it by replacing all white space characters to underscores in the names of the events and they are appeared after about 5 min.
Incorrect log
[FlurryAnalytics logEvent:@"EVENT NAME"];
Correct log
[FlurryAnalytics logEvent:@"EVENT_NAME"];
This naming agreement is not mentioned in the FlurryAnalytics' documentation but it worked for me.