iphone4 ios9.1 上的企业应用
enterprise apps on iphone4 ios9.1
情况:
- 公司资产/产品,我正在努力管理,但不是苹果
科技树人
- app 二进制文件通过 https
部署到 apache 主机
- 有清单和索引文件(如果有帮助可以附上)
- Apache 设置为发布 MIME 强制内容类型
- appobjective-C代码一个月不变
- 如果我在桌面上下载它,该文件是 IPA 预期的标准 zip
- 在以前的版本中,此过程会导致可安装的应用程序;目前该应用程序未加载。
如何诊断?我会用图标日志更新这个。
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 时避免使用通配符配置文件。尝试使用带有显式应用标识符的分发配置文件。
情况:
- 公司资产/产品,我正在努力管理,但不是苹果 科技树人
- app 二进制文件通过 https 部署到 apache 主机
- 有清单和索引文件(如果有帮助可以附上)
- Apache 设置为发布 MIME 强制内容类型
- appobjective-C代码一个月不变
- 如果我在桌面上下载它,该文件是 IPA 预期的标准 zip
- 在以前的版本中,此过程会导致可安装的应用程序;目前该应用程序未加载。
如何诊断?我会用图标日志更新这个。
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 时避免使用通配符配置文件。尝试使用带有显式应用标识符的分发配置文件。