如何通过安装 .app(二进制)文件在设备上测试应用程序? (不使用Xcode进行测试)
我创建了一个应用程序,我想将其发送给另一个人进行测试。 )
他有一部 iPhone 和一台 Mac,但他的 Mac 上没有 xcode。 (他不是 iPhone 程序员)那么,
如果我发送 .app 文件,他可以在他的 iPhone 上测试吗?如果没有,我还能怎么做?
这是我的第一个应用程序:),我不知道如何在真实设备上进行测试。所以请帮助我。
提前致谢。 :)
I have created an app and I want to send that to another person for testing it. )
He got an iPhone and a mac, but doesn't have xcode on his mac. (he is not an iphone programmer) So,
If I send the .app file, can he test that on his iPhone? If not, how else I can do this?
This is my first app :) and I have no idea about testing on real devices. So please help me.
Thanks in advance. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要执行所谓的“临时分发”,这需要创建一个特殊的临时配置文件,其中包含测试仪的设备 UDID。
我强烈推荐 https://testflight.apple.com/ 因为它极大地简化了临时构建的分发。
You need to do what's called "ad-hoc distribution", which requires creating a special ad-hoc provisioning profile that includes your tester's device UDID.
I highly recommend https://testflight.apple.com/ as it greatly simplifies distributing your ad-hoc builds.
是的,这就是“临时”测试。您需要:
更多详细信息请参阅 Apple 指南中的“Ad-Hoc”测试。
Yes, this is what "Ad-hoc" testing is. You'll need to:
Many more details available in Apple's guides under "Ad-Hoc" testing.