How to install ipa over the network and install ipa over the network

Source: Internet
Author: User

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:

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.