Flurry Analytics, Basic Analytics Issues

后端 未结 6 1879
攒了一身酷
攒了一身酷 2021-01-05 02:41

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

6条回答
  •  感情败类
    2021-01-05 03:28

    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.

提交回复
热议问题