CrashReports icon indicating copy to clipboard operation
CrashReports copied to clipboard

Symbolicate iOS crash reports

CrashReports

Symbolicate iOS Crash Reports

Download CrashReports 0.1

CrashReports

CrashReports is a Cocoa wrapper over Apple's symbolicatecrash.pl.

It can convert addresses into symbols in iOS crash reports, such as the ones generated by PLCrashReporter.

CrashReports assumes that the .xcarchive is indexed by Spotlight.

Also, otool, atos, lipo and size should be in their default location.

If not, edit symbolicatecrash.pl:

$otool = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool";
$atos  = "/Applications/Xcode.app/Contents/Developer/usr/bin/atos";
$lipo  = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo";
$size  = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/size";