Reputation: 13
I have to use Windows for my work so there it's a big deal to symbolicate iOS crash reports there. Are there any tools or tips how to make it more convenient?
Upvotes: 1
Views: 1910
Reputation: 36
this application may help you : https://sourceforge.net/projects/ioscrashlogstool/
Upvotes: 2
Reputation: 15339
It is not possible to symbolicate on Windows. While Apple uses a perl script for parsing the crash report, it relies on otool
and atos
to get the actual symbols from the dSYMs for a given address and architecture.
Edit: Only otool
is available as open source, thanks to Emmanuel in the comments for the hint.
These are your options (to my best knowledge):
(Disclaimer: I am a Co-Founder of HockeyApp)
Upvotes: 0