itunesconnect - OTA Distribute Success in iOS 10 But Failed To Download in Older OS -


i have create ota link distribute in house app, able download in ios10 devices, failed download in ios9 or older devices, show failed download app.

my manifest below, , minimum deploy version 8.2

<?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://xxx.company.com/xxx.ipa</string>                                 </dict>                                 <dict>                                         <key>kind</key>                                         <string>display-image</string>                                         <key>url</key>                                         <string>https://xxx.company.com/image_57.jpg</string>                                 </dict>                                 <dict>                                         <key>kind</key>                                         <string>full-size-image</string>                                         <key>url</key>                                         <string>https://xxx.company.com/image_512.jpg</string>                                 </dict>                         </array>                         <key>metadata</key>                         <dict>                                 <key>bundle-identifier</key>                                 <string>com.company.xxx</string>                                 <key>bundle-version</key>                                 <string>0.79</string>                                 <key>kind</key>                                 <string>software</string>                                 <key>title</key>                                 <string>xxx</string>                         </dict>                 </dict>         </array> </dict> </plist> 

anyone face same issue , have solution this? have try in few devices, still same.


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -