iOS Enterprise OTA distribution Unable to Download Application

前端 未结 8 2232
面向向阳花
面向向阳花 2020-11-30 00:44

I created an iOS app and want to distribute it Over-The-Air. I followed this guide:

http://help.apple.com/iosdeployment-apps/mac/1.1/?lang=en-us#app43ad77ea

相关标签:
8条回答
  • 2020-11-30 01:24

    Answering my own question:

    The problem was that one of the thumbnails did not have the correct path set in the manifest.plist - so not only the ipa needs the correct path, but also the temporary download icons, otherwise the installation will fail with the mentioned error message.

    0 讨论(0)
  • 2020-11-30 01:27

    Another Issue that it could be is that both the .plist AND the .ipa need to be hosted with HTTPS and not just regular HTTP. The software package string should look like below:

    <key>kind</key>
    <string>software-package</string>
    <key>url</key>
    <string>https://example.com/app.ipa</string>
    

    Stupid little oversight but it was tripping me up for awhile.

    0 讨论(0)
提交回复
热议问题