I have an .ipa file, which is the output of the deployment of my application using distribution profile. When I try to install in any new ios device say IPad Mini(using Itunes), installation is happening till 75% after it's showing "Unable to Install Please try again later".
Note: Same .ipa file used to work 4 months back, but now its not installing. I understand that certificates and profiles are required only for ipa deployment but installation can be done on any ios device without much prerequisites.
Did I miss anything here or something missing like certificates/profiles in my IpadMini? Please help.
答案 0 :(得分:0)
我使用内部分发证书来识别分发配置文件中的团队/组织。当我们使用过期的证书时,它会生成.ipa文件,但它不会在IOS设备上安装。(这就是我的问题的原因)
只有在使用adhoc分发证书限制在其他设备中使用ipa时,才需要添加IOS设备的UDID。
答案 1 :(得分:0)
碰到同样的问题。这是我解决的方法:
1)确保在Apple Developer页面中注册设备的UDID。当您构建到启用了自动签名的设备时,此操作会自动完成,但是您始终可以手动输入信息。
2)在Xcode中,导出存档的项目时,请确保选择“即兴” 作为分发方式。
3)在“应用程序精简”下选择您选择的设备。在同一屏幕上,我未选择“从位码重新构建”,因为构建要花很长时间才能完成。
4)生成.ipa文件后,只需将其拖放即可正确安装。
:)