Search code examples
iosdistributionenterprise

iOS 8.1 Enterprise Distribution


I have an application that is built with xcode 6.1.

I created a plist to go with it.

It downloads just fine on iOS 8.0.2 and before, however, it always fails to install on any iOS 8.1 devices.

Here are my steps I am following.

Archive the ipa file using the created certificate and provisioning profile Host the plist and ipa file in your server

Include a download html file with a href tag with src

"itms-services://?action=download-manifest&url=https://mypassagewaytest.gwic.com/gw/premcalc/iPremium.plist"

And my 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://mypassagewaytest.gwic.com/gw/premcalc/iPremium.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.gwic.premiumcalculator</string>
                <key>bundle-version</key>
                <string>1.3.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>iPremium</string>
            </dict>
        </dict>
    </array>
    </dict>
    </plist>

Solution

  • Solved. I just update the provision profile by downloading latest enterprise distribution profile from developer.apple.com. I was facing the same issue. But I am using Xcode 6.0.1. Now everything is working like a charm, (Testflightapp and my own server both)