与团队共享临时 iPhone 应用程序
如何将编译好的 iPhone 应用程序与其他(非开发)团队成员共享?
我们的项目经理希望能够使用/测试它。我记得以前这样做过,但是,我只是在下载端。
我正在使用 Titanium Appcelerator,它编译应用程序并将其添加到 iTunes 以推送到设备。有没有办法将此文件导出到磁盘以供团队的其他成员使用?
团队都将其设备添加到临时配置文件中。
How can I take a compiled iPhone application and share it with other (non dev) team members?
Our project manager would like to be able to use/test it. I recall in the past doing this, however, I was only on the downloading end.
I am using Titanium Appcelerator, which compiles the application and adds it to iTunes to be pushed to the device. Is there a way to export this file to disk to serve to the rest of the team?
The team all has their devices added to the provisional profile.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明很简单,与 Titanium Appcelerator 交互时并不那么明显。
从 Xcode 打开项目
- 您可以在 TI Appcelerator 生成的构建目录中访问此准备好的项目
在 Xcode 中,选择 Product>Archive
在 Xcode 中,选择 Window>Organizer,导航到 Archives
- 如果没有出现任何内容,您可能需要编辑要显示的发布/调试存档的方案
在 Xcode Organizer>Archives 中,选择存档并共享它
这将生成要提供给测试人员的 IPA 文件。
苹果的一份深入文档解释了所涉及的过程和步骤。
分发应用程序
Turns out to be straight forward, not as obvious when interfacing with Titanium Appcelerator.
Open the project from Xcode
- you can access this prepared project in the build directory generated by TI Appcelerator
In Xcode, select Product>Archive
In Xcode, select Window>Organizer, navigate to Archives
- if nothing appears, you may have to edit your scheme for release/debug archives to be revealed
In Xcode Organizer>Archives, select the archive and share it
This will generate the IPA file to be served to testers.
An in depth doc by apple explains the process and steps involved.
Distributing Applications