ios 如何使用 .plist 在 App Store 外下载和安装 .ipa

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/17543574/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-31 00:17:08  来源:igfitidea点击:

How to download and install .ipa outside App Store with .plist

iosapp-storeipa

提问by VivienCormier

Today I discovered an app.

今天我发现了一个应用程序。

This app is not available to the App Store, if I want to try this, I just have to click on the link since my iPhone :

这个应用程序在 App Store 上不可用,如果我想尝试这个,我只需要点击链接,因为我的 iPhone :

itms-services://?action=download-manifest&url=http://*********.s3.amazonaws.com/********-ios.plist

itms-services://?action=download-manifest&url=http://*********.s3.amazonaws.com/********-ios.plist

And the application installs in my home page.

该应用程序安装在我的主页中。

The link forced to download a .plist :

强制下载 .plist 的链接:

enter image description here

在此处输入图片说明

What it this way ?

这怎么回事?

What it's the deal with provisioning profile or the certificats ?

与配置文件或证书有什么关系?

回答by Antonio MG

It's just a way of distributing an app for beta testing using your distribution profile, but without submitting it to Apple.

这只是使用您的分发配置文件分发用于 Beta 测试的应用程序的一种方式,但无需将其提交给 Apple。

The .plist it's just a link to where the .ipa (the app) is stored.

.plist 它只是指向 .ipa(应用程序)存储位置的链接。

You can find a tutorial here:

您可以在此处找到教程:

How to Distribute your iOS Apps Over the Air

如何通过无线方式分发您的 iOS 应用程序