Ad-Hoc 分发 - 应用程序“<应用程序名称>”未在 iPhone 上安装“”因为签名者无效 应用程序名称>
当 itunes 抱怨时,这到底意味着什么?
应用程序“”未安装在 iPhone“”上,因为签名者无效。
当我们使用“构建和存档”或什至使用“临时”分发方法时,我们会遇到此错误,其中目标 iPhone 的 UUID 在配置门户中注册并在构建二进制文件之前生成新的配置文件...
然后我们将发布通过电子邮件将二进制文件发送给我们的测试人员...他们将尝试安装该应用程序,并且始终会出现此错误。
知道发生了什么吗?
what does it really mean when itunes complains that??
The application "" was not install on the iPhone "" because the signer is not valid.
we have got this error when we use "Build and Archive" or even with "Ad-hoc" distribution method with the targeted iPhone's UUID registered with Provisioning portal and generated new provisioning profile before we build the binaries...
then we will ship the binaries via email to our tester... they will try to install the application and this error always appear.
any idea what happened?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@Yit Ming:
可能存在三个问题:
1) 您的配置文件可能已过期。
2) 您的应用程序可能未使用正确的配置文件进行代码签名。
3) 您的设备 ID 可能未添加到配置文件中。
希望这有帮助
@Yit Ming:
There can be three issues:
1) It may be the case your provisioning profile either has expired.
2) It may be your app is not code signed with a proper provisioning profile.
3) It may be the case that your device ID may not be added to the provisioning profile.
Hope this helps
我已经找到了解决我的问题的方法。
正如我之前提到的,即使我使用“构建和存档”方法编译二进制文件(在 .IPA 中)以安装在我的测试人员的设备中,有时我仍然会收到错误
应用程序“”未安装在 iPhone 上“”因为签名者无效。
这是因为配置文件没有正确安装到设备上...(您可以通过“设置”->“常规”->“配置文件”来验证您的配置文件是否正在安装)
我为解决此问题所做的工作是,我会将我的配置文件和 .ipa 文件复制到我的测试仪。
然后我的测试人员会将这两个文件拖到他的 iTunes 中。
这将确保配置配置文件安装到设备上。然后哇啦!
i have already found a solution to my problem.
as i mentioned previously, even if i use the method "Build and Archive" to compile a binary (in .IPA) to be installed in my tester's device, occasionally i will still get the error
The application "" was not install on the iPhone "" because the signer is not valid.
This is because the provisioning profile is not being installed properly to the device... (you can verify whether your provisioning profile is being installed by Settings -> General -> Profiles)
What i have done to resolve this issue is, i will copy my provisioning profile and .ipa file to my tester.
Then my tester will drag both of the files into his iTunes.
This will ensure that the provisioning profile is being installed to the device. then woalla!