Skip to content

Instantly share code, notes, and snippets.

@Mozilla9
Last active May 20, 2016 12:27
Show Gist options
  • Save Mozilla9/362024a3077438553f42 to your computer and use it in GitHub Desktop.
Save Mozilla9/362024a3077438553f42 to your computer and use it in GitHub Desktop.

Steps

  • Create a folder, e.g. ~/Desktop/crashlog_dir.
  • Put your MyAppName.ipa in folder.
  • Put your MyAppName.crash in folder.
  • Then..
  1. cd /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/

  2. cp symbolicatecrash ~/Desktop/crashlog_dir/

  3. export DEVELOPER_DIR=/Applications/XCode.app/Contents/Developer

  4. ./symbolicatecrash -v MyAppName.crash MyAppName.app.dSYM

links

http://stackoverflow.com/questions/29692194/symbolicatecrash-not-working-with-dsym-but-atos-works

  • Copy it somewhere and edit it to change the line:

  • print STDERR "Did not find executable for dsym\n" if $opt{v};

  • return undef;

  • Change undef to /path/to/your.app.dSYM/Contents/Resources/DWARF/YourAppName

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment