Analysing App IPS file in XCode

萝らか妹 提交于 2020-01-13 09:22:49

问题


I'm trying to find out why my app is crashing for certain users. I personally cannot replicate it.

The user emailed me their IPS file. This is the output after I've loaded it in Organiser, and right clicked, selected Re-symbolicate: http://pastebin.com/8q6RE7sU

I assume this is where the problem occurred in my code:

3   FlightMachine                       0x000000010003b970 0x100028000 + 80240
4   FlightMachine                       0x000000010008b79c 0x100028000 + 407452

But how do I find out what is at 0x100028000 + 80240, to find out what the actual problem is?

Thank you.


回答1:


If you have dysm file of your app version which got crash, you can symbolicate it using atos tool with the steps mentioned in Apple documentation




回答2:


For additional info, I opened Organiser, selected Download dSYMs, then went to Devices > View Error Logs, imported the IPS file into it (by drag and dropping). Then I right clicked the relevant crash and selected re-symbolicate.

If your IPS files dont simply drag into the crash view, rename them to .crash, then back again to IPS.



来源:https://stackoverflow.com/questions/40447722/analysing-app-ips-file-in-xcode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!