2013-08-26 96 views
0

我認爲Flurry崩潰分析服務工作不正常。它報告了一些錯誤,迄今爲止非常好。問題是,他們包括初始symbolication,並沒有任何意義:Flurry崩潰分析的問題

Thread 0 Crashed: 
    0 libobjc.A.dylib      0x3a3005b0 +[Protocol load] + 663 
    1 UIKit        0x343993f5 0x342b1000 + 951285 
    2 UIKit        0x34586a39 0x342b1000 + 2972217 
    3 UIKit        0x342bd82f 0x342b1000 + 51247 
    4 UIKit        0x342bc293 0x342b1000 + 45715 
    5 UIKit        0x342c71e7 0x342b1000 + 90599 
    6 UIKit        0x342c6db3 0x342b1000 + 89523 
    7 UIKit        0x342b4801 0x342b1000 + 14337 
    8 UIKit        0x342b411b 0x342b1000 + 12571 
    9 GraphicsServices     0x35fa85a3 0x35fa2000 + 26019 
    10 GraphicsServices     0x35fa81d3 0x35fa2000 + 25043 
    11 CoreFoundation      0x32481173 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 17062 
    12 CoreFoundation      0x32481117 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 16970 
    13 CoreFoundation      0x3247ff99 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 12492 
    14 CoreFoundation      0x323f2ebd -[__NSDate timeIntervalSinceReferenceDate] + 500 
    15 CoreFoundation      0x323f2d49 -[__NSDate timeIntervalSinceReferenceDate] + 128 
    16 GraphicsServices     0x35fa72eb 0x35fa2000 + 21227 
    17 UIKit        0x34308301 0x342b1000 + 357121 
    18 myApp        0x000f962d __mh_execute_header + 50733 

我上傳了其各自的DSYM文件,但沒有顯著變化。

Exception Type: SIGSEGV 
Exception Codes: SEGV_ACCERR at 0x8 
Crashed Thread: 0 

Thread 0 Crashed: 
0 libobjc.A.dylib      0x3a3005b0 +[Protocol load] + 663 
1 UIKit        0x343993f5 0x342b1000 + 951285 
2 UIKit        0x34586a39 0x342b1000 + 2972217 
3 UIKit        0x342bd82f 0x342b1000 + 51247 
4 UIKit        0x342bc293 0x342b1000 + 45715 
5 UIKit        0x342c71e7 0x342b1000 + 90599 
6 UIKit        0x342c6db3 0x342b1000 + 89523 
7 UIKit        0x342b4801 0x342b1000 + 14337 
8 UIKit        0x342b411b 0x342b1000 + 12571 
9 GraphicsServices     0x35fa85a3 0x35fa2000 + 26019 
10 GraphicsServices     0x35fa81d3 0x35fa2000 + 25043 
11 CoreFoundation      0x32481173 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 17062 
12 CoreFoundation      0x32481117 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 16970 
13 CoreFoundation      0x3247ff99 +[__NSCFLocale automaticallyNotifiesObserversForKey:] + 12492 
14 CoreFoundation      0x323f2ebd -[__NSDate timeIntervalSinceReferenceDate] + 500 
15 CoreFoundation      0x323f2d49 -[__NSDate timeIntervalSinceReferenceDate] + 128 
16 GraphicsServices     0x35fa72eb 0x35fa2000 + 21227 
17 UIKit        0x34308301 0x342b1000 + 357121 
18 myApp        0x000f962d main + 145 (main.m:17) 

有誰知道如何禁用它們的符號服務。我想要的是下載一份簡明的碰撞報告,以便我可以做我的事,並在本地做出我自己的象徵意義。

+0

見:http://stackoverflow.com/questions/19813522/symbolicating-an-ios-7-crash-report-using-flurry-crash-analytics –

回答

0

只需從Flurry下載崩潰報告並將其導入到XCODE和resymbolicate中即可。

如果你不想亂舞symbolicate您的崩潰報告,在在Xcode目標節上設置 構建設置 - >編譯選項 - >調試信息格式=矮

+7

來自Flurry的我的崩潰報告不會導入到XCode中。怎麼辦? – mm2001