大家好,请问企业版发布到自己的平台上,为什么app在下载的过程没有进度呢?是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>app的URL</string>  
                    </dict>  
                    <dict>  
                        <key>kind</key>  
                        <string>full-size-image</string>  
                        <key>needs-shine</key>  
                        <true/>  
                        <key>url</key>  
                        <string>图片@2x.png</string>  
                    </dict>  
                    <dict>  
                        <key>kind</key>  
                        <string>display-image</string>  
                        <key>needs-shine</key>  
                        <true/>  
                        <key>url</key>  
                        <string>图片@1x.png</string>  
                    </dict>  
                </array>  
                <key>metadata</key>  
                <dict>  
                    <key>bundle-identifier</key>  
                    <string>XXXX</string>  
                    <key>bundle-version</key>  
                    <string>0.4.0</string>  
                    <key>kind</key>  
                    <string>software</string>  
                    <key>title</key>  
                    <string>XXXX</string>  
                </dict>  
            </dict>  
        </array>  
    </dict>  
    </plist>  

解决方案 »

  1.   

    并没有 你可以先使用最简单的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://xxxxxxxxxxx/xxx.ipa</string>
                                    </dict>
                            </array>
                            <key>metadata</key>
                            <dict>
                                    <key>bundle-identifier</key>
                                    <string>com.xxxx.xxx</string>
                                    <key>bundle-version</key>
                                    <string>1.0.0</string>
                                    <key>kind</key>
                                    <string>software</string>
                                    <key>title</key>
                                    <string>xxx</string>
                            </dict>
                    </dict>
            </array>
    </dict>
    </plist>
      

  2.   

    跟配置文件没有关系的,是跟iOS的版本相关(也可以说是iOS的bug),这个我之前在iOS11上也遇到过,后来设备升级到iOS12问题就自动解决了!