Is there a way to debug a .ipa file after archiving?
I have a bug that I am running into when I archive to .ipa file that doesn’t show up in xcode when I am running tests.
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Presumably your testing is done with a Debug build, whereas your archive is a Release build? You can check this if you select ‘Edit Scheme’ from the schemes drop down in Xcode.
To test the archive build, you can change your “Run” setting to use a release build rather than debug – click on Run in the left hand panel from the Edit Scheme screen and then the Info tab and change the Build Configuration to Release.
Don’t forget to turn it back to Debug once you have finished.
The thing is – it’s pretty rare to find issues like this, could you perhaps explain more about what your problem actually is?