Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

symbolicatecrash location in XCode 5

Using Xcode 5 I noticed that the symbolicatecrash.sh executable is no more available under the old location:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash

Anybody knows where I can find it? Maybe there is a newest integrated way to symbolicate crash reports?

Thanks

like image 482
Mauro Nonnis Avatar asked Oct 15 '13 15:10

Mauro Nonnis


People also ask

How do you Symbolicate an IOS crash report?

To symbolicate in Xcode, click the Device Logs button in the Devices and Simulators window, then drag and drop the crash report file into the list of device logs. Crash reports must have the . crash file extension. If a crash report doesn't have a file extension, or has a different file extension like .

What is DSYM file in IOS?

A dSYM file is an ELF file that contains DWARF (debugging with attributed record formats) debug information for your application. DWARF is a debugging file format that supports source-level debugging.


2 Answers

New location under XCode5:

Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash

like image 107
rakmoh Avatar answered Oct 25 '22 09:10

rakmoh


In my case, it turned out to be in SharedFrameworks:

/Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecras

Anyway, from your Xcode.app path, just run:

find . -name "symbolicatecrash"
like image 26
André Morujão Avatar answered Oct 25 '22 09:10

André Morujão