我可以在不物理连接到开发计算机的情况下将应用程序安装到配置的设备吗
我已经成功配置了 5 个开发设备用于开发阶段的测试。这工作得很好,因为我最初是通过将每部 iPhone 物理插入我的 MAC 并安装软件来实现的。
然而,我的测试人员是远程的,因此必须与他们会面以安装新版本进行测试是一件痛苦的事情。
有没有办法让我远程分发新的测试版本给他们?谢谢。
I have successfully provisioned 5 development devices to be used in testing during the development phase. This is working fine because I initially did it by physically plugging each iPhone into my MAC and installing the software.
However my testers are remote and so it is a pain to have to meet with them to install new versions for testing.
Is there a way for me to distribute the new test versions to them remotely? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用分发证书(而不是开发证书)创建临时构建。
将测试设备 UDID 添加到开发中心的配置门户的“设备”部分。然后创建分发配置文件,选择“Ad Hoc”作为类型,并检查所需的所有设备。
下载此配置文件并将其添加到 XCode。
从那里,我建议您遵循本指南: http://diaryofacodemonkey.ruprect.com/2011/03/18/ad-hoc-app-distribution-with-xcode-4/
一旦你有了.ipa 文件,您可以通过电子邮件将此文件发送给测试人员,测试人员可以在自己的 Mac 或 PC 上使用 iTunes 安装该文件。
You need to create an Ad Hoc build using your distribution certificate (not the development certificate).
Add the test device UDID's into the Devices section of the provisioning portal in the dev center. Then create a Distribution provisioning profile, selecting 'Ad Hoc' as the type, and check all the devices required.
Download this profile and add it to XCode.
From there, I suggest you follow this guide: http://diaryofacodemonkey.ruprect.com/2011/03/18/ad-hoc-app-distribution-with-xcode-4/
Once you have the .ipa file, you can email this to your testers, who can install it using iTunes on their own mac or PC.
您必须检查此链接才能安装不带 itunes 的应用程序
http:// jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/
并且您也更喜欢为您的客户提供 TESTFLIGHT 进行测试
https://testflightapp.com/
you must check this link to install app without itunes
http://jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/
and you also prefer TESTFLIGHT for your clients for testing purpose
https://testflightapp.com/