我有一个Apple开发人员帐户,并且从我的项目中获得了一个即席IPA文件。现在我想直接安装它。根据我在互联网上发现的内容,我创建了两个文件:
index.html:
<html>
<body>
<a href="itms-services://?action=download-manifest&url=https://mobile.myapp.com/ios_version/manifest.plist">
Download
</a>
</body>
</html>
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://mobile.myapp.com/ios_download_link/myapp.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>url</key>
<string>https://mobile.myapp.com/ios_download_link/logo-57x57.png</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>url</key>
<string>https://mobile.myapp.com/ios_download_link/logo-512x512.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.myapp.flight</string>
<key>bundle-version</key>
<string>1.0.6</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>myapp</string>
</dict>
</dict>
</array>
</dict>
</plist>
作为结果,当我单击safari上的下载链接时,将显示一个弹出窗口以安装该应用程序。但是安装后,它只是没有我的图标的无用应用程序,当我单击该应用程序时,没有任何反应。
任何帮助将不胜感激。