iOS Enterprise app deployment to server
After the iOS upgrade is iOS7, the plist file must be placed on the HTTPS server, and HTTP is not available.
The. plist reference template is as follows:
<?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://test.company.com.cn/m/moa/test.ipa</string>//Software installation package, the server path where the installation package resides</dict> <dict> <key>kind</key> <string>full-size-image</string> <key>needs-shine</key> <false/> <key>url</key> <string>https://test.company.com.cn/m/abc/test-512.png</string>//The picture path of dot thing on itunes</dict> <dict> <key>kind</key> <string>display-image</string> <key>needs-shine</key> <false/> <key>url</key> <string>https://test.company.com.cn/m/moa/test-57.png</string>//Install the pictures that the app displays</dict> </array> <key>metadata</key> <dict> <key>update-ur L</key> <string>https://test.company.com.me/ioslocal.plist</string>//version update URL<key>bundle-identifier</key> <string>com.zte.test</string>//Application Bundle-identifier<key>bundle-version</key> <string>3.0.3</string>//Use version number<key>kind</key> <string>software</string> <key>title</key> <string>IPA Package Deployment Test </string>//Install the name of the app display</dict> </dict></array></dict></plist>
The principle of installing applications directly on iOS devices without the AppStore
With the Itms-services protocol, the app can be installed directly on iOS devices in Safari browser. The Itms-services protocol requires a plist configuration file.
Deploy a specific process
Prepare files: plist file, IPA installation package, HTML download page
iOS Enterprise app deploys to your server without AppStore to install apps directly on your iOS device