简体   繁体   English

乱舞iOS崩溃报告分析

[英]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. 我一直试图使用Flurry在iPad应用程序上使用Flurry测试崩溃报告但是没有取得多大成功。 When I view the Flurry dashboard online, its not showing any crash reports. 当我在线查看Flurry仪表板时,它没有显示任何崩溃报告。 Although I can see other events being registered in Flurry Dashboard but not crash reports. 虽然我可以看到其他事件在Flurry Dashboard中注册但不是崩溃报告。 Below is the code which I am using in AppDelegate to enable crash reports using flurry. 下面是我在AppDelegate中使用的代码,用于使用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 以下是我用于在iPad上测试的步骤

  • Run my app on iPad 在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. 任何建议将不胜感激,thnx。

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

Try putting [Flurry startSession: flurryToken]; 尝试把[Flurry startSession: flurryToken]; last. 持续。 At least one of your methods subsequent to your startSession call needs to be called before startSession. 您需要在startSession之前调用startSession调用之后的至少一个方法。

See, for example, documentation for setSecureTransportEnabled: 例如,请参阅setSecureTransportEnabled:文档setSecureTransportEnabled:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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