Building an iOS app for a client with his own developer account for App Store submission

余生颓废 提交于 2019-12-04 21:16:07

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.

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

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!