我为我的组织设置了OTA,但似乎无法让它正常运行。这就是我所做的:
ipa application/octet-stream
plist application/xml
<a href="itms-services://?action=download-manifest&url=https://***/***/***.plist">Install</a>
这是清单的样子:
<?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://***/***/***.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>need-shine</key>
<false/>
<key>url</key>
<string>https://***/***/***.png</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>need-shine</key>
<false/>
<key>url</key>
<string>https://***/***/***.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifer</key>
<string>***.***.***</string>
<key>bundle-version</key>
<string>233582</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>***</string>
</dict>
</dict>
</array>
</dict>
</plist>
我已经验证了清单中的网址。他们肯定是正确的。我已经将我的电脑用作手机的代理,我看到我的手机在点击安装链接后成功下载了清单。但是,在手机下载清单后,没有任何反应 - 手机无法安装应用程序或在屏幕上显示错误。我还在交易过程中监控了控制台,并且没有出现任何错误。
我完全不知道这可能导致什么问题。任何帮助,将不胜感激!提前谢谢!
答案 0 :(得分:2)
我将need-shine
更改为needs-shine
,将bundle-identifer
更改为bundle-identifier
,这解决了问题。如果控制台为清单中的无效字段发出错误会很好,但不幸的是它没有。