简体   繁体   中英

Flurry iOS crash reporting analytics

I have been trying to test crash reports using Flurry for the past few days on iPad app using Flurry but haven't had much success. When I view the Flurry dashboard online, its not showing any crash reports. Although I can see other events being registered in Flurry Dashboard but not crash reports. Below is the code which I am using in AppDelegate to enable crash reports using flurry.

//Step 1: This should be done before you start session
[Flurry setCrashReportingEnabled:YES];

//Step 2:
[Flurry startSession:flurryToken];
[Flurry setSecureTransportEnabled:YES];
[Flurry setShowErrorInLogEnabled:YES];
[Flurry setDebugLogEnabled:YES];
[Flurry setBackgroundSessionEnabled:NO];

Below are the steps that I have used to test on iPad

  • Run my app on iPad
  • Cause crash on one of the screen
  • Re-run the app
  • Press the home screen to put in the background

Any suggestions would be appreciated, thnx.

它似乎现在正在运作,我创造了一张乱舞的票,他们确认它可能需要大约8个小时才能显示在仪表板中。

Try putting [Flurry startSession: flurryToken]; last. At least one of your methods subsequent to your startSession call needs to be called before startSession.

See, for example, documentation for setSecureTransportEnabled:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM