Created
July 8, 2016 16:21
-
-
Save RazorAnt/61520faa23df2147a1b0434f0d94670a to your computer and use it in GitHub Desktop.
iOS Enterprise Deployment - for distribution with your IPA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>My app install</title> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> | |
<style> | |
body { | |
font: 13pt Helvetica, sans-serif; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>My App</h1> | |
<p>Whatever description / build info</p> | |
<a href="itms-services://?action=download-manifest&url=https://mycompany.com/mypath/myapp.plist">Install my app</a> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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://mycompany.com/mypath/myapp.ipa</string> | |
</dict> | |
</array> | |
<key>metadata</key> | |
<dict> | |
<key>bundle-identifier</key> | |
<string>com.mycompany.myapp</string> | |
<key>bundle-version</key> | |
<string>1.0.0</string> | |
<key>kind</key> | |
<string>software</string> | |
<key>title</key> | |
<string>myapp</string> | |
</dict> | |
</dict> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment