iphone4 ios9.1 上的企业应用

enterprise apps on iphone4 ios9.1

情况:

如何诊断?我会用图标日志更新这个。
Apache 说一切都在正确下载,尽管前端说 "App downloaded incorrectly."

编辑:我在家里的通知要求提供额外的文件;但是办公室里没有这个请求。

清单:

<?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>

清单和 html 文件看起来不错 - 问题是您的应用授权与配置文件中的不匹配。

看起来您的应用程序是调试版本,而您在导出 ipa 时选择的配置文件是通配符分发内部配置文件。

这不会有好结果。

确保 Edit Schemes... 中的 Archive 命令正在使用发布配置(或确保您没有在构建设置中使用开发配置文件覆盖)并再次存档和导出。

我也会在导出 ipa 时避免使用通配符配置文件。尝试使用带有显式应用标识符的分发配置文件。