How to symbolicate crash log Xcode?

后端 未结 12 1191
别那么骄傲
别那么骄傲 2020-11-22 12:28

Xcode 5 organizer had a view which would list all the crash logs. and we could drag drop crash logs here. But since Xcode 6, I know they have moved devices out of organize a

12条回答
  •  庸人自扰
    2020-11-22 13:04

    For me the .crash file was enough. Without .dSYM file and .app file.

    I ran these two commands on the mac where I build the archive and it worked:

    export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer" 
    
    /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash  /yourPath/crash1.crash > /yourPath/crash1_symbolicated.crash
    

提交回复
热议问题