如何将配置应用程序提供给其他人?
我开发了一个 iPhone 应用程序。该网络服务是由远程人员开发的,并且没有开发人员帐户/ xcode 等。但他确实有 iTunes。
有没有办法让我允许他的 iPhone 安装应用程序,而无需他创建开发者帐户、拥有 xcode 等?使该应用程序可供他的 iTunes 使用的方法将是理想的选择。
这可能吗?
非常感谢, 菲德尔
I have a developed an iphone application. The web service was developed by someone who is remote and does not have a developer account / xcode etc. He does have iTunes though.
Is there a way for me to allow his iphone to install the application without him having to create a developer account, have xcode etc? A way to make the application available to his iTunes would be ideal.
Is this possible?
Many thanks,
Fidel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取他的 iPhone 设备 UDID。然后创建一个用于临时分发的分发配置文件,并将其 UDID 添加到该配置文件中。创建应用程序的分发版本并使用该分发配置文件进行签名。将 build .app 和 .mobileprovision(配置文件)发送给他。他必须首先通过 iTunes 安装配置文件(拖放到“库”部分,然后同步),然后类似地,一旦成功安装配置文件,他就可以安装该应用程序。
Get his iPhone device UDID. Then create a distribution profile for ad-hoc distribution and add his UDID to the profile. Create a distribution build of your app and sign with that distribution profile. Send over the build .app and the .mobileprovision (provisioning profile) to him. He will have to install the profile first via iTunes (drag and drop to Library section and then sync) and then similarly he can install the app once the profile is successfully installed.