我有企业分发工作。问题是,当我创建新版本并用新版本替换服务器上的.ipa时,它总是以某种方式加载应用程序的1.0版本。
这是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>http://myapp.com/app/MyApp.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.myapp.myappenterprise</string>
<key>bundle-version</key>
<string>1.1</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>My App</string>
</dict>
</dict>
</array>
</dict>
</plist>
我试过了:
清除移动版Safari中的缓存。
确保app的版本#增加(1.1)
确保app的构建数量增加。
从服务器删除应用程序并上传新版本的新副本。
将plist中的bundle-version更改为1.1。
在HTML文件上设置no-cache策略:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
...
<a href="itms-services://?action=download-manifest&url=https://myapp.com/app/enterprise.plist">Install</a>
当我通过Safari安装时,即使我已经创建了新的版本并替换了服务器上的.ipa文件,我仍然知道如何安装1.0版本的任何想法?