7

I have a submitted iOS app and I have the build archive with me. So, I took the crashes from iTunesConnect but when I tried to symbolicate them (dragged the .crash files to Xcode Organizer they didn't get symbolicated. I also pressed the Symbolicate button.

I am using Xcode 5.0, and I am pretty sure that the crashes that I am symbolicating came from the correct version of the build archive that I have.

Any ideas of why it doesn't work?

Thanks!

EDIT

Incident Identifier: E2A64AF6-C8A3-465D-81C3-09674CD18771
Hardware Model:      iPhone4,1
Process:         MyApp [9551]
Path:            /var/mobile/Applications/0B0523C1-0EF9-41D8-AE91-D0C43B8DC00E/MyApp.app/MyApp
Identifier:      MyApp
Version:         ??? (???)
Code Type:       ARM (Native)
Parent Process:  launchd [1]

Date/Time:       2013-09-17 16:42:10.390 -0500
OS Version:      iOS 6.1.3 (10B329)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xc2269d62
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libobjc.A.dylib                 0x3975f5b0 objc_msgSend + 16
1   MyApp                           0x00215812 0x100000 + 1136658
2   MyApp                           0x00216ca0 0x100000 + 1141920
3   MyApp                           0x001494e2 0x100000 + 300258
4   UIKit                           0x33898fb0 -[UIApplication _deactivateForReason:notify:] + 396
5   UIKit                           0x338cef26 -[UIApplication _handleApplicationSuspend:eventInfo:] + 310
6   UIKit                           0x338451e2 -[UIApplication handleEvent:withNewEvent:] + 2454
7   UIKit                           0x338446c8 -[UIApplication sendEvent:] + 68
8   UIKit                           0x33844116 _UIApplicationHandleEvent + 6150
9   GraphicsServices                0x3555c5a0 _PurpleEventCallback + 588
10  GraphicsServices                0x3555c1ce PurpleEventCallback + 30
11  CoreFoundation                  0x31a11170 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32
12  CoreFoundation                  0x31a11112 __CFRunLoopDoSource1 + 134
13  CoreFoundation                  0x31a0ff94 __CFRunLoopRun + 1380
14  CoreFoundation                  0x31982eb8 CFRunLoopRunSpecific + 352
15  CoreFoundation                  0x31982d44 CFRunLoopRunInMode + 100
16  GraphicsServices                0x3555b2e6 GSEventRunModal + 70
17  UIKit                           0x338982fc UIApplicationMain + 1116
18  MyApp                           0x00148b9a 0x100000 + 297882
19  MyApp                           0x001028f4 0x100000 + 10484

Here's one of the crashes.

4

3 回答 3

20

我遇到了同样的问题,对我来说,这是因为我给 Xcode 应用程序起的名字。

当 5 的 GM 版本问世时,我仍在编写 4.6 中的生产代码。以前的版本附加了 DPn,但 GM 被称为“Xcode”,所以我将它重命名为“Xcode 5”。那个空间是我的问题。

查看控制台日志并扩展[symbolicatecrash] stderr:在它开始查找我的应用程序符号后,我发现了以下行:

sh: /Applications/Xcode: 没有这样的文件或目录

将应用程序重命名为“Xcode5”并点击 re-symbolicate 立即象征着崩溃日志。

这可能不是您的确切问题,但肯定值得扩展控制台日志中的 stderr: 部分并查找与为您的应用程序获取符号文件相关的任何错误。

于 2013-10-01T16:33:33.360 回答
0

在我的情况下,检查 [symbolicatecrash] stderr 的 consol 日志没有显示任何具体内容。我重新启动了 Xcode 并检查了控制台中 Xcode 生成的错误条目。有几个条目提到了钥匙串的问题。我的一张证书丢失了。

我通过以下方式从 Xcode 请求新证书:Preferences>Accounts>View Details

Xcode 检测到缺少证书,并提供了提交请求的选项。完成该过程后,Xcode 能够按预期从管理器窗口重新符号化。

于 2014-04-06T16:11:40.710 回答
0

确保您的 Xcode 应用程序名称不包含任何空格。这就是它对我不起作用的原因。所以/Applications/Xcode.app有效,而/Applications/Xcode 6.1.1.app无效。

于 2015-01-14T20:54:05.360 回答