如何在我的 iPhone 上同时保留开发版本和发布版本?
我想在手机上保留应用程序的两个版本:发行版本和当前开发版本。执行此操作的最佳实践方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在手机上保留应用程序的两个版本:发行版本和当前开发版本。执行此操作的最佳实践方法是什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我在 XCode 中创建了两个目标。一个是临时应用商店,另一个是应用商店。
每个都有自己的分布概况,并且每个都有自己的
拥有自己的 AppID,因此两个版本可以在您的手机上共存。
注意:应用商店版本必须退出并安装
通过 iTunes。
取决于你所说的“运输”是什么意思。如果你指的是版本
那已经出来了,那么你只需要鼓起勇气去购买你的
自己的应用程序。
I make two targets in XCode. One ad hoc and the other appstore.
Each has its own distribution profile, and each has its
own AppID so both versions can co-exist on your phone.
Caveat: the appstore version has to be resigned and installed
via iTunes.
Depends on what you mean by "shipping". If you mean the version
that's already out then you'll just have to man up and buy your
own app.
您可以更改应用程序包标识符,这将导致它作为自己的应用程序安装在您的设备上,当您想要重新分发时,只需将包标识符(在 plist 中)更改回原来的样子,这应该对您有用
You can change the app bundle identifier which will cause it to be installed on your device as its own app, when you want to re distribute just change the bundle identifier (in the plist) back to what it was, that should work for you