本文介绍了使用自己的开发者帐户为客户构建 iOS 应用程序以提交 App Store的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用 xCode 4.3 为拥有自己的开发者帐户的客户制作了一个应用程序.现在我需要向他发送我的编译/二进制应用程序(无源代码),以便他可以在他的帐户下提交.
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.
我不知道他的 bundle ID,也没有他的开发者证书.
I dont know his bundle ID and neither i have his developer certificate.
他不会向我提供他的开发者证书.
And he will not supply me his developer certificate.
可以吗?
我搜索了如何做到这一点,但没有找到答案.
I searched how this can be done but didn't find an answer.
推荐答案
照常构建 IPA,然后将其与 Info.plist
的副本一起发送给他.然后他必须:
Build the IPA as normal, then send it to him along with a copy of the Info.plist
. He must then:
- 编辑
Info.plist
文件以包含他的包 ID. - 解压 IPA.
- 替换
Info.plist
文件. - 使用
codesign
重新签署应用程序. - 重新压缩 IPA.
- 手动将其提交到 iTunes Connect.
- 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.
这篇关于使用自己的开发者帐户为客户构建 iOS 应用程序以提交 App Store的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!