Reputation: 5850
I need to send an ipa to the client to submit it to the App Store (he has given me his .p12 key and certificate, together with the provisioning profile).
When it was XCode 3.x (submission = upload through webbrowser), it is an easy process. But with XCode 4, how can I do this?
Is there any way he can import the ipa into the XCode organizer to validate and submit it?
Upvotes: 15
Views: 13224
Reputation: 6268
Your client could use the application loader to upload the ipa.
You should first select Deliver Your App
and not Open Package
which is misleading.
Upvotes: 5
Reputation: 1916
You must build for device using the appropriate certificate/provisionning, Then go to products, you find the .app file, choose "show in finder" Zip the .app file and send it to your client.
Once you've done this, your client must use "Application loader" to submit/updload the binary/application.
"Application Loader" is an utility installed with Xcode.
In general you find it in the path "xcode/Applications/Utilities"
Upvotes: 17