Reputation: 609
My app is for the iPhone only .And it is working fine on all devices but when submitted the app it get rejected by apple by saying .......
On 1st time submission
We found your app crashed on launch so we were unable to review it.
Please revise your app and test it on a device to ensure it will launch without crashing, and that it runs as expected, before resubmitting.
this the crash report link please this is the crash report
on second submission it get rejected they says
Thank you for your resubmission. However, we were still unable to review your app, as it crashed on launch. We have attached detailed crash logs to help troubleshoot this issue.
Specifically, upon review we found the application will shortly crash after launch.
they send crash report
I didn't get where i am doing wrong ,please check this ,Thanks in advance
I also try Bhavin step to find the crash location but terminal show's me like that
Upvotes: 5
Views: 7536
Reputation: 609
I found the solution. We can just directly drag and drop the crash-report on the device log. Then it will convert the crash report into readable format.
STEPS:
Upvotes: 6
Reputation: 853
If you test your app and it works fine but Apple keeps rejecting it then you need to test it on release mode not debug mode as follows:
Edit scheme > Run > Build configuration > release
Hope this helps someone because I came across this issue and it took me too long to sort it out!
Upvotes: 3
Reputation: 27235
Follow these steps :
- Get the .ipa file that you submitted to the app store.
- Rename the extention .ipa with .zip , extract it. You'll get a Payload Folder which contains .app file.
- Create a folder with this .app file and crash log file.
- Now, open terminal application and go to the folder created in above step (using
cd
command).Run this magic line :
atos -arch armv7 -o YourAppName.app/YourAppName MEMORY_LOCATION_OF_CRASH
Where,
MEMORY_LOCATION_OF_CRASH
= location where your app crashed as per the report.
It'll give you the exact line, method name which resulted in crash.
Upvotes: 4