Search code examples
iphoneipadios5crashthree20

App crashes in iPad IOS 5.0.1


I have an application which has Three20 framework. It is working perfectly in iPad IOS 5.0 and iOS4.3. However, our customers says that the app crashes while logging in to the application itself. Because after login it has a three20 framework. I am not sure where the problem exists. Please guide me. Is there any way I can test the app for IOS 5.0.1 with the simulator?

Any help is greatly appreciated...


Solution

  • You should install a crash handler. We use BugSense (free): http://bugsense.com Make sure you follow their guidelines, in return you will get a detailed crash report from every device that crashed with the specific address of the crash.

    With the archive file in place you should run the atos command to resolve that address to a line number like this: cd into [ArchiveName].xcarchive/Products/Applications and then run atos -o [appname].app/[appname] -arch armv7 [address]

    it will resolve to the line number which should get you started.

    if you are sending an adhoc build to customers I suggest you use the Testflight SDK http://testflightapp.com . it also installs a crash handler + it allows you to upload the symbol files (.dsym) and they do the resolve for you.