从 PHP 中的 ipa 中提取嵌入的配置文件
我想创建一个像 testflight 这样的网络服务器。我只想上传 ipa 文件并获取配置文件。因此用户不需要添加配置文件。有解决办法吗?
另外,testflight 如何在设备中安装应用程序?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想创建一个像 testflight 这样的网络服务器。我只想上传 ipa 文件并获取配置文件。因此用户不需要添加配置文件。有解决办法吗?
另外,testflight 如何在设备中安装应用程序?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
对于任何想要“真实”答案的人,您可以使用 PHP 提取 IPA(zip),并且可以在 Payload 文件夹中的 XXXX.app 文件夹中找到该规定
For anyone who wants a "real" answer you would use PHP to extract the IPA(zip) and the provision is available in the XXXX.app folder in the Payload folder
实际上,您的临时发行版中的嵌入式配置文件将在 OTA 下载时自动安装在用户的设备上。查看 Apple 文档,了解分发适用于 iOS 4 设备的企业应用,无线安装应用程序部分。对于完整的示例,请阅读[已删除]
编辑:
上面的链接已损坏,似乎已移至:http://aaronparecki.com/articles/2011/01/21/1/how-to-distribute-your-ios-apps-over-the-air
也是从 iOS 7.0 开始。 3、plist(不是 ipa)必须托管在 ssl 安全站点 (https) 上。
Actually the embedded profile in your ad-hoc distribution will install on the user's device automatically while downloaded OTA. Check Apples docs on Distributing Enterprise Apps for iOS 4 Devices, section Installing Apps Wirelessly. For a full sample read [deleted]
Edit:
The link above was broken, and seems to have moved to: http://aaronparecki.com/articles/2011/01/21/1/how-to-distribute-your-ios-apps-over-the-air
Also since iOS 7.0.3, the plist (not the ipa) must be hosted on a ssl secured site (https).