Xcode 6 exports IPA file with locally installed provisioning profile

We are doing development for a third party where we have a file .p12

and a production prep profile, but we are not added to the developer account in our Member Center.

In Xcode 5.1.1, you can export an archive, then select the correct provisioning profile and sign the IPA file that way.

In Xcode 6, this option seems to be gone completely. Assuming we can't add to our developer account, is there a way to export an IPA file with a locally installed provisioning profile (and corresponding .p12

file)?

+3


source to share


1 answer


I get a solution without renewing the certificate:

1 - Archive the target using the appropriate code signing ID and provisioning profile

2 - Right button in the created file in Organizer → Show in Finder

3 - Right button in xcarchive file -> Show package contents

4 - There, in Finder, go to Products / Applications /



5 - Upload the file Products / Apps / App name to iTunes

6 - When the app appears in iTunes, right click on it → Show in Finder. This is the ipa file

7 - Send this ipa via App Loader 3.0

I don't think this is a long-term solution, but I don't want to delete my certificates.

0


source







All Articles