问题
I made an app with xCode 4.3 for a client with his own developer account. Now i need to send him my compiled/binary app (no source code) so he can submit it under his account.
I dont know his bundle ID and neither i have his developer certificate.
Edit: And he will not supply me his developer certificate.
Can it be done?
I searched how this can be done but didn't find an answer.
回答1:
Build the IPA as normal, then send it to him along with a copy of the Info.plist
. He must then:
- Edit the
Info.plist
file to include his bundle ID. - Unzip the IPA.
- Replace the
Info.plist
file. - Re-sign the application using
codesign
. - Re-zip the IPA.
- Submit it to iTunes Connect manually.
回答2:
The way I have done this before was to log in as the client, and submit from your machine. But I guess this depends on the trust level between you
回答3:
You need to have his distribution certificate (with private and public keys) and distribution profile. When you have those, you can create a compiled app for submission to Apple.
Basically, he needs to create the App ID, certificate, and profile and give them to you. If he cannot do this, you need to sign in to his account for him.
Once he has the compiled app, he can easily submit it using Xcode or Application Loader.
回答4:
Build and archive the iOS app with your own certificates, then send the customer the resulting app archive (zipping up the app's archive directory, if needed). Look here for Xcode's archive files: ~/Library/Developer/Xcode/Archives/
In the archive, they can find and edit the app's Info.plist file.
Then the customer can submit the app archive from Xcode's Organizer and using their own developer account. Xcode should ask them to re-codesign the app with their own Distribution certificates as part of its upload process.
来源:https://stackoverflow.com/questions/12039155/building-an-ios-app-for-a-client-with-his-own-developer-account-for-app-store-su