How to install ipa over the network and install ipa over the network
If an Apple mobile app is published to an Appstore, it is often complicated and has a long cycle. Over-the-Air is a new Apple technology in iOS4, the purpose is to enable developers to download and install iOS applications from their own servers without using the Appstore. Simply put, you only need to open a link in Safari to install the App directly on the main interface.
In high-version IOS systems, plist must be deployed on an https server for normal access. The following example shows how to install the IPA application without using the AppStore.
1 xcode package ipa (app. ipa)
And upload it to a network that can be accessed through the public network, such.
After the configuration, IIS restarts. After successful configuration, you will be prompted to download the URL again:
2. Compile a plist File
<?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>http://yourwebsite.com/ipa/app.ipa</string> </dict> </array> <key>metadata</key> <dict> <key>bundle-identifier</key> <string>com.aruistar.cmcapp</string> <key>bundle-version</key> <string>1.0</string> <key>kind</key> <string>software</string> <key>title</key> <string>cmcapp</string> </dict> </dict> </array></dict></plist>
Plist files must be put on the https service. They are not set up by themselves and can be uploaded to github for processing. Pay attention to the configuration of the <string> http://yourwebsite.com/ipa/app.ipa </string> In plist.
2. Create an ipainstall.html page. The Code is as follows:
1 <! DOCTYPE html> 2
Note that itms-services ://? Action = download-manifest & url is not the default github url and must be the address of the original file, generally starting with raw.githubusercontent.com.
This URL can be parsed only when it is accessed using Apple safari:
After the installation is successful, open the app and perform the following operations: