如何允许 Beta 测试人员在无需物理访问 iPad 的情况下运行我的 iPad 应用程序
我正在尝试对我的应用程序进行本地化,并希望允许某人运行我的应用程序,以便他们可以查看本地化是否正常工作。我无法实际接触他们的 iPad。有没有办法促进这一点?您能否引导我查看一些文档以实现此目的?
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用临时分发方式向他们提供应用程序的副本。您首先需要他们设备的 UUID(让他们从 iTunes 下载 AdHoc Helper 应用程序)。
获得 UUID 后,您可以准备应用程序的 Ad-Hoc 发行版。以下说明应该是准确的,但我很快就把它们组合在一起,并且在某些地方可能缺乏明确的细节。
创建分发配置文件:
配置Xcode for Ad-hoc Build:
将项目编译为存档:
企业分发(适用于向测试版用户临时分发):
将应用程序的安装链接添加到您的网站:
http://www.example/downloads/newapp/NewApp.plist">安装 NewApp
在设备上安装应用程序:
You can give them a copy of the app using Ad-Hoc distribution. You will first need the UUID of their device (have them download the AdHoc Helper app from iTunes).
After you have the UUID you can prepare the Ad-Hoc distribution of your app. The following instructions should be accurate, but I put them together pretty quickly and may be lacking explicit detail at some points.
Create Distribution Profile:
Configure Xcode for Ad-hoc Build:
Compile Project as Archive:
Enterprise Distribution (works for ad-hoc distribution to beta users):
Add the install link for your application to your website:
<a href="itms-services://?action=download-manifest&url=http://www.example/downloads/newapp/NewApp.plist">Install NewApp</a>
Install Application on Device:
我从未使用过它们,但 TestFlight 可能正是您想要的。无线测试版分发。
I've never used them, but TestFlight may be exactly what you want. Over-the-air beta distribution.