向客户展示应用程序的测试版
我可以向我的客户发送他可以在模拟器中运行的 iOS 应用程序的测试版吗?
我可以在 Mac 上仅安装模拟器(不带 Xcode)吗?
实际上,我需要一种有效的方法来向他发送应用程序的测试版本,而不必在每次更新时与他见面。
另外,(3.) 有没有办法安装我在 iOS 设备上的 xCode 中开发的应用程序的 beta 版本,而无需应用程序商店?
谢谢
Can I send to my customer a beta version of my iOS app that he can run in the Simulator ?
Can I install Simulator only (without Xcode) on a Mac ?
I actually need an efficient methodology to send him the beta versions of the app, without having to meet him at each update.
Also, (3.) is there a way to install a beta version of the app, I developed in my xCode on its iOS device without app store ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,我不相信你可以。
不,我不这么认为。但是,如果可以的话,您还必须将所有源代码放在该计算机上并在那里构建应用程序,只是为了在模拟器中运行它。
是的,这称为临时构建。您可以通过 Apple 开发人员门户上的配置门户创建特殊的配置文件。然后,您使用该配置文件签署构建(实际上是“构建和存档”)。然后,您可以通过 Xcode Organizer 通过电子邮件与您的客户共享该构建。管理器创建一个 .ipa 文件,并将其与配置文件一起包含到电子邮件中,然后您可以撰写并发送该电子邮件。
编辑:当然,Ad Hoc 配置文件需要包含客户想要测试的设备的 UDID。这是将所有内容联系在一起的缺失部分:UDID、临时配置文件、使用该配置文件签名的应用程序、通过电子邮件将其发送给客户,他们可以通过 iTunes 安装这两个文件(ipa 和配置文件)。
开发者门户中有很多相关文档。
No, I do not believe you can.
No, I don't think so. If you could, however, you'd also have to put all your source code on that machine and build your app there, just to run it in the simulator.
Yes, it's called an Ad Hoc build. You create a special provisioning profile through the provisioning portal on Apple's Developer portal. You then sign the build with that provisioning profile (actually, "Build and Archive"). Then you can, through the Xcode Organizer, share that build via e-mail with your customer. The Organizer creates an .ipa file and includes it along with the provisioning profile into an e-mail message which you can then compose and send.
Edit: The Ad Hoc provisioning profile will, of course, need to include the UDID's of your customer's device(s) on which they would like to test. That is the missing piece here that ties it all together: UDIDs, Ad Hoc profile, signed app with that profile, e-mail it to the customer and they can install both files (ipa and profile) via iTunes.
Lots of documentation on this, right in the Developer portal.
TestFlightApp.com 是轻松管理和分发 Beta 测试和临时构建的好方法。没有什么是你自己无法手动完成的,但它确实可以让一切变得简单,而且是免费的。
TestFlightApp.com is a great way to easily manage and distribute beta tests and ad-hoc builds. It's nothing you couldn't do yourself, manually, but it really helps make it easy, and is free.