通过Xcode Organizer调试Beta版崩溃报告 - >崩溃

时间:2016-07-28 13:50:15

标签: xcode crash-reports symbolicatecrash

我已提交我的应用进行beta测试和审核,很少有用户报告随机崩溃,我正在尝试修复崩溃 我已经使用Xcode Organizer成功下载了崩溃报告,根据苹果公司的文档发生崩溃的堆栈框架以橙色突出显示但在崩溃报告中我的案例中没有突出显示的橙色,点击堆栈框架(通过单击箭头),它打开项目,但显示Xcode项目的最后状态不显示实际发生崩溃的文件和行。

enter image description here

1 个答案:

答案 0 :(得分:2)

following are the steps to trace out the crash reports.
1. Open organizer and select crashes.
2. Select the build submitted to Appstore from the left panel of organizer  window under ios apps.
3. Select any crash log under the Appstore->app version
4. Right click on crash log and select show in finder.
5. Again right click on the xxx.xccrashpoints(log file) and select show package contents.
6. Go to the path Distributionlogs->all->logs to see all the crash reports.
7. Move all the .crash file to any folder on desktop.
8. Connect your iOS device with mac machine, open xcode(if not open) and go to Window->Devices->select you ios Device -> view device logs.
9. Drag all the .crash reports(refer step 6,7) under all logs tab, and there you go.. you can see that your crash logs are desymbolicated, you can see the method name causing the crash.  

应用程序商店发布版本已经为您解除了限制,您可以单击小箭头图标以到达行号。导致崩溃。这主要是针对测试版。