iOS:如何分发“并行”文件用于临时 Beta 测试的应用程序版本
我想开始对 iOS 应用程序进行有限的 Beta 测试。我知道如何定期临时分发现有应用程序,但一位潜在的测试版用户告诉我,当他们测试其他应用程序时,他们最终会在生产应用程序旁边安装一个单独的应用程序。但我不知道其他开发人员正在做什么来创建这个。
我是否需要销毁在 Apple 注册的新应用程序 ID(以及永远不会真实的应用程序名称)才能为我的测试版用户完成此操作?
如果是这样,是否有合理的方法在单个 Xcode 项目中管理它?
感谢这里有经验的人。我知道我正在玩弄“编程问题”这句话,但这肯定是具有正确专业知识的社区。谢谢! :)
I'd like to start doing limited beta testing of an iOS app. I know how to do regular ad-hoc distribution of my existing app, but I've had one of my potential beta users tell me that when they test other apps, they end up having a separate app installed alongside the production one. But I don't know what the other developers are doing to create this.
Do I need to burn up a fresh app ID registered with Apple (and app name that will never be real) to accomplish this for my beta users?
If so, is there a reasonable way to manage this within a single Xcode project?
Thanks from anyone with experience here. I know I'm toying with the line of "programming question", but this is certainly the community with the right expertise. Thanks! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 Info.plist 中设置不同的包标识符即可。
就个人而言,我在项目中创建了三个配置(调试、Ad Hoc、App Store),然后为每个配置定义用户定义的构建设置 (
BUNDLE_IDENTIFIER
),在其中设置不同的包 ID。在我的 Info.plist 中,我可以将包 ID 设置为
${BUNDLE_IDENTIFIER}
。Just set a different bundle identifier in your Info.plist.
Personally, I create three configurations in my project (Debug, Ad Hoc, App Store) and then define a user-defined build setting for each config (
BUNDLE_IDENTIFIER
) in which I set the different bundle IDs.In my Info.plist, I can then set the bundle ID as
${BUNDLE_IDENTIFIER}
.