一份ipa的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>http://47.240.64.230:8089/?download=322</string> ##ipa的url
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://gitee.com/otherbanana/banana-ipa/raw/master/ipa-plist/tubiao.jpg</string> ##安装时显示的图片
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://gitee.com/otherbanana/banana-ipa/raw/master/ipa-plist/tubiao.jpg</string> ##安装时显示的图片
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>org.telegram.TelegramHD</string> ##ipa的包名
<key>bundle-version</key>
<string>242</string> ##ipa版本号
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>Telegram X</string> ##显示的名称
<key>title</key>
<string>Telegram X</string> ##显示的名称
</dict>
</dict>
</array>
</dict>
</plist>
ipa的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://uc.iosuc.com/music/dyys.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.dstk.dyys</string>
<key>bundle-version</key>
<string>4.7</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>大鱼影视去广告版</string>
</dict>
</dict>
</array>
</dict>
</plist>
因为plist文件url必须是https,这里我选择上传到gitee,github应该也可以。接下来把下面的代码放入(html格式)
<p style="text-align: center;"><a class="app_link" style="color: #7ac5cd; font-size: 15px; font-weight: bold;" href="itms-services://?action=download-manifest&url=https://gitee.com/otherbanana/banana-ipa/raw/master/ipa-plist/shadowerocket2.1.23.plist"> Click to download </a></p>
更新:2024-5-8
plist文件必须是能直接打开而不是下载
ios16以上,ipa文件需要重命名。类似:Shadowrocket@com.liguangming.Shadowrocket.ipa,即原文件名@bundle-identifier.ipa
参考文章
Comments | NOTHING