如何通过安装 .app(二进制)文件在设备上测试应用程序? (不使用Xcode进行测试)

发布于 2024-11-19 14:19:53 字数 239 浏览 2 评论 0原文

我创建了一个应用程序,我想将其发送给另一个人进行测试。 )

他有一部 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对风讲故事 2024-11-26 14:19:53

您需要执行所谓的“临时分发”,这需要创建一个特殊的临时配置文件,其中包含测试仪的设备 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.

软糖 2024-11-26 14:19:53

是的,这就是“临时”测试。您需要:

  1. 将朋友的设备添加到位于developer.apple.com 的iOS 配置门户
  2. 生成一个配置配置文件,其中包含您的应用程序的该设备。
  3. 使用此配置文件构建应用程序。
  4. 使用“产品”->“存档”生成 .IPA 文件
  5. 将该 .IPA 文件发送给朋友。

更多详细信息请参阅 Apple 指南中的“Ad-Hoc”测试。

Yes, this is what "Ad-hoc" testing is. You'll need to:

  1. Add the friend's device to the iOS provisioning portal at developer.apple.com
  2. Generate a provisioning profile that includes it for your app.
  3. Build the app using this profile.
  4. Generate an .IPA file using Product->Archive
  5. Send the friend that .IPA file.

Many more details available in Apple's guides under "Ad-Hoc" testing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文