每次添加新设备进行临时安装时是否都必须重新编译?
我已经为我的 iPhone 应用程序创建了一个临时配置文件。 每次添加新设备时,是否需要重新编译应用程序才能分发? 这非常乏味。
I have created an ad-hoc provision profile for my iPhone application. Everytime I add a new device, do I need to re-compile my application so that it can be distributed? This is VERY tedious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 当您编译应用程序时,它会使用您为当前构建配置选择的 *.mobileprovision 进行代码签名。 每次添加新设备时,它都会更改 *.mobileprovision 文件以允许该唯一的 UDID,因此您需要重新编译并重新安装 *.mobileprovision(通过再次拖入 iTunes),以便新设备运行特别发行版。
Yes. When you compile your application it is code signed with the *.mobileprovision you have selected for the current build configuration. Each time you add a new device, it changes the *.mobileprovision file to allow for that unique UDID, so you need to both recompile AND reinstall your *.mobileprovision (by dragging into iTunes again) in order for the new devices to run the Ad Hoc distro.