We've created an iPhone application and provisioned the application for deployment. In XCode we've used the build & archive tool to create an IPA file that can be used for installation. When new devices are added to the profile we would like to re-provision the IPA without recompiling or re-exporting the app from XCode.

Is there any way to do this?

link|improve this question
I'm definitely interested in this as well. I have to keep a copy of my old builds for when I add new testers while I'm mid-version. – adamweeks Apr 14 '11 at 1:14
feedback

1 Answer

If you look at the detail tabs of the XCode Build Results window after your Ad Hoc build, you will notice that the last few steps include running the ProcessProductPackaging and CodeSign utilities.

If you copy those command lines (and the intervening and following steps, if any), you could manually run these commands (or from a shell script), substituting the newer mobileprovision file in the appropriate place, to create a reprovisioned ipa file without a recompile.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.