Flurry Analytics, Basic Analytics Issues

后端 未结 6 1884
攒了一身酷
攒了一身酷 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:35

    I faced the same problem when testing Flurry using the simulator or the device from Xcode. The problem was that I was killing the app from Xcode right after testing and sending events, and no data was sent to Flurry server.

    Data is only sent to the server when the application goes into background, so press the home button and wait 10 seconds before killing your app.

    You can also enable debug log and see when data is sent and if response is correct (http code=200):

    [Flurry setDebugLogEnabled:YES];
    

    It can take a couple of hours for data being visible in Flurry reports.

    Hope it helps.

提交回复
热议问题