I tried to symbolicate crash logs sent by Apple for one of my app.
I have three files .crash sent by Apple, if I take one of them, I've something like this :
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x0000000194bf2964 __kill + 8
1 MyApp 0x000000010010d514 0x10007c000 + 595220
2 libsystem_platform.dylib 0x0000000194c88958 _sigtramp + 64
So I think the problem is on the line "1" at the adress 0x10007c000 ?
I followed the solution posted here : Symbolicating iPhone App Crash Reports but when I do :
atos -arch armv7 -o 'APPNAME.app'/'APPNAME' 0x10007c000
I just have "0x10007c000" in answer....
What I need to do ? I don't understand.... And I found nothing from Apple Doc (to use atos to symbolicate)...
Thanks,