Skip to content

Instantly share code, notes, and snippets.

@74monkeys
Created September 25, 2014 19:37
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save 74monkeys/13aec76b39c030dde9a5 to your computer and use it in GitHub Desktop.
Save 74monkeys/13aec76b39c030dde9a5 to your computer and use it in GitHub Desktop.
Manifest Template for OTA iOS Ad Hoc Distribution
<?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>URL-OF-IPA-FILE</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>BUNDLE-ID</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>APP-NAME</string>
</dict>
</dict>
</array>
</dict>
</plist>
@m-stephen
Copy link

 In old version of XCode, for example, in XCode 5,when I distributing the ipa of my App,  just clicked "Save as Enterprise" button and enter my application URL,then I got a plist. However, in XCode 6, I can't find any entrance for it. 
Instead of it, I use the plist that generate from Xcode 5,it can works well on IOS7 targets, nothing happens on IOS 8 targets, however.
Does apple limit the In House Building feature for developers? Is there a good way to solve this problem?
Looking forward to your reply.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment