形势:
我该怎么诊断?我将更新这与一个图标鞋底日志。
Apache说所有下载都是正确的,尽管前面写着“应用程序下载错误”。
编辑:我在家里的通知要求提供更多的文件,但是这个请求不在办公室。
舱单:
<?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://nyetimberstock.com/ipa/StockRecorder.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.molewood.nyetimber</string>
<key>bundle-version</key>
<string>0.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>Stocked</string>
</dict>
</dict>
</array>
</dict>
</plist>索引中的相关线
<div class="link"><a href="itms-services://?action=download-manifest&url=https://nyetimberstock.com/ipa/manifest.plist">Tap Here to Install<br />Stocked<br />On Your Device</a></div>发布于 2015-11-26 12:15:15
清单文件和html文件看起来很好-问题是您的应用程序权限与您的供应配置文件中的不匹配。
它看起来您的应用程序是一个调试构建,而您在导出ipa时选择的配置文件是内部配置文件中的通配符。
不会有好结果的。
确保在Edit Schemes...中,Archive命令使用的是发行版配置(或者确保您没有在Build中使用开发配置文件覆盖),并再次存档和导出。
在导出ipa时,我还将避免使用通配符配置文件。尝试一个带有显式应用标识符的分发配置文件。
https://stackoverflow.com/questions/33924072
复制相似问题