Xcode 6 Save for Enterprise Deployment does not create plist for ipa anymore?

I’m having the same problem. Needed to put a build out last night. I ended up just reusing an old plist and updating it. Here’s a template: <?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>[INSERT URL HERE]</string> </dict> </array> <key>metadata</key> … Read more

IOS Enterprise Distribution Through OTA

As of December 2011, these are the steps: Create a provisioning profile in your Apple Enterprise account Set this as the Code Signing Identity under the Build setting of your app. Make sure the Bundle ID matches that of the provisioning profile. Select Product > Archive to build IPA file. Click Share (aka Distribute) button … Read more

Enterprise In-House App distribution

You definitely don’t! You can distribute the app via In-House Distribution: Building with that profile will create an .ipa and a .plist file. You put that on a website that is protected via basic authentication. Put a link to the plist file on the site in the below format. Then you can just browse to … Read more

iOS 8 – Can’t Install Enterprise App

Looking through the console of the phone whist attempting to install one of my apps, I discovered: Sep 9 12:16:56 iPhone misagent[94] <Error>: attempt to install invalid profile: 0xe8008011 Sep 9 12:16:56 iPhone installd[40] <Error>: 0x100484000 -[MIInstallableBundle _installEmbeddedProfileInBundle:]: Could not install embedded profile: 0xe8008011 (Expired) Reasons unbeknown to me, apple invalidated half of my profiles … Read more