Symbolicating without Xcode
Ever wanted to symbolicate a incomplete crash file (i.e. the logs you get from TestFlight)?
You can symbolicate individual addresses from the crashlog in the terminal using a command named `atos` (if you’ve got the dSYM file for your build). Here’s an example:
atos -arch armv7 -o MyApp.app.dSYM/Contents/Resources/DWARF/MyApp 0x0000babe
This will output you the line of code related to this address. I.e.:
+[MyHappyClass fullOfFail] (in MyApp) + 429
Pro Tip: not entering the address when calling the atos command leaves you in STDIN mode. Here you can add multiple addresses without restarting the tool.