IOS包 " *. ipa " 放到自己的服务器,并支持下载安装

Posted daivid

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS包 " *. ipa " 放到自己的服务器,并支持下载安装相关的知识,希望对你有一定的参考价值。

 

1.创建 manifest.plist 文件
   2.通过 itms-services://协议让 Safari 进行下载
   3.ipa 下载链接必须为 https 的

文件 manifest.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://xxxx.com/down/ios/xxxx.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>url</key>
<string>https://xxxx.com/down/ios/images/58.png</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>url</key>
<string>https://xxxx.com/down/ios/images/640X960.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>.com.xxxx.xxxLo</string>
<key>bundle-version</key>
<string>1.4</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>xxxx网</string>
</dict>
</dict>
</array>
</dict>
</plist>

文件 index.html
<html lang="en">
<head>
<meta charset="UTF-8">
<title>xxxx网</title>
</head>
<body>
<a style="font-size: 5rem" href="itms-services://?action=download-manifest&url=https://xxxx.com/down/ios/manifest.plist">下载</a>
<h1>IOS下载</h1>
</body>
</html>

参考链接
https://www.jianshu.com/p/2f5ec1ab46f4


以上是关于IOS包 " *. ipa " 放到自己的服务器,并支持下载安装的主要内容,如果未能解决你的问题,请参考以下文章

iOS 开发.app快速生成.ipa包安装

ios打包成的ipa包 怎样让其他人都可以安装

ipa包如何打包?ios打包ipa的四种方法分享

无法在 Xcode 中分发我的 iOS 版 Flutter 应用程序 - “包中的 ipa 包含无效字符”

iOS ipa 包优化

ios 用xCode开发,怎么打包ipa包,在未越狱的iPhone上可以直接安装