Skip to content

Instantly share code, notes, and snippets.

@hadibadjian
Last active August 16, 2019 09:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hadibadjian/a0bf703be1f7faaccf753acb7fbfc659 to your computer and use it in GitHub Desktop.
Save hadibadjian/a0bf703be1f7faaccf753acb7fbfc659 to your computer and use it in GitHub Desktop.
iOS - Symbolicate crashlogs
  • Create a folder
  • Place the DSYM file in the folder. (unzip file.dsym.zip)
  • Place the crash log in the folder.
  • Run the following commands to symbolicate the crash log.
export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
cp -i /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash ./
./symbolicatecrash unsymbolicated.crash > symbolicated.crash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment