安装plist for IOS Enterprise应用程序后,浏览器不再最小化

安装plist for IOS Enterprise应用程序后,浏览器不再最小化,ios,plist,Ios,Plist,我有一个带有href的超链接,指向: itms-services://?action=download-manifest&url=https://www.example.com/myFile.plist 而且安装正确。在IOS 8之前,应用程序已下载,并将您带到设备的主屏幕,在那里您可以看到应用程序图标指示正在下载。从那里,用户可以轻松地启动应用程序作为下一步。 这种情况不再发生 plist中是否有需要更改的内容来触发此问题 <?xml version="1.0" encodin

我有一个带有href的超链接,指向:

itms-services://?action=download-manifest&url=https://www.example.com/myFile.plist
而且安装正确。在IOS 8之前,应用程序已下载,并将您带到设备的主屏幕,在那里您可以看到应用程序图标指示正在下载。从那里,用户可以轻松地启动应用程序作为下一步。 这种情况不再发生

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>https://www.myexample.com/download/iOS/myenterpriseapp.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.swatchdog.enterprise</string>
                <key>bundle-version</key>
                <string>1.0.34</string>
                <key>kind</key>
                <string>software</string>
                <key>subtitle</key>
                <string>myApp for iPad II and above</string>
                <key>title</key>
                <string>SwatchDog</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

项目
资产
友善的
软件包
网址
https://www.myexample.com/download/iOS/myenterpriseapp.ipa
元数据
包标识符
com.swatchdog.enterprise
捆绑版本
1.0.34
友善的
软件
字幕
适用于iPad II及以上版本的myApp
标题
样例日志

这种期望的行为在IOS 8之前就存在,但现在已经消失了。这是一个企业应用程序。这种期望的行为在IOS 8之前就存在,但现在已经消失了。这是一个企业应用程序。