Skip to content

Instantly share code, notes, and snippets.

@pawelkijowskizimperium
Created April 29, 2019 12:15
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 pawelkijowskizimperium/cb1170bc56bd8b0c9466496eee6c04c6 to your computer and use it in GitHub Desktop.
Save pawelkijowskizimperium/cb1170bc56bd8b0c9466496eee6c04c6 to your computer and use it in GitHub Desktop.
Symbolicate iOS crash logs
export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
symbolFile=${1}
shift
while test ${#} -gt 0
do
/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash "${1}" "${symbolFile}" > "${1}.txt"
shift
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment