IOS: Install iPad app wirelessly not working

I followed this specifically for installing the application over the wireless network, and also monitored various blogs and posts, but could not get the distribution to work.

I have done the following things.

Index.html page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>My app</title>
</head>
<body>
<ul>

    <a href="itms-services://?action=download-manifest&url=http://10.0.20.600:5151/MyApp.plist">
            Install App</a>
</ul>
</body>
</html>

MyApp.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>URL</key>
    <string>http://10.0.20.600:5151/MyApp.ipa</string>
    <key>display-image</key>
    <string>http://10.0.20.600:5151/icon72x72.png</string>
    <key>full-size-image</key>
    <string>http://10.0.20.600:5151/icon512x512.png</string>
    <key>bundle-identifier</key>
    <string>com.MyCompany.MyApp</string>
    <key>bundle-version</key>
    <string>1.0</string>
    <key>title</key>
    <string>MyAppName</string>
</dict>
</plist>

Included MIME Types:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
    <staticContent>
        <mimeMap fileExtension=".ipa" mimeType="application/octet-stream" />
        <mimeMap fileExtension=".plist" mimeType="text/xml" />
    </staticContent>
</system.webServer>
</configuration>

Providing full permission to the MyApp.plist file.

When I open the page http://10.0.20.600โ–บ151/index.html in Safari on the iPad, I get the page and click Install App, * It doesn "do nothing" There are no errors and nothing!

Someone also mentioned to download the mobile software file, so I added the following to my index.html

<a href="http://10.0.20.600:5151/MyApp.mobileprovision">
            Install Provisioning File</a>

.., , " ".

-, , , ? , !

+3
4

.

MIME. . ipa iPad , . ipa .

, , , . , , ?

( xcode btw)

<?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>kind</key>
                    <string>software-package</string>
                    <key>url</key>
                    <string>http://url/to/ipa.ipa</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>display-image</string>
                    <key>needs-shine</key>
                    <true/>
                    <key>url</key>
                    <string>http://url/to/icon/57.png</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>full-size-image</string>
                    <key>needs-shine</key>
                    <true/>
                    <key>url</key>
                    <string>http://url/to/full/icon.png</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.app.myapp</string>
                <key>bundle-version</key>
                <string>1.1</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>myApp</string>
            </dict>
        </dict>
    </plist>

, !

+2

!

install.html :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Remote App Install</title>
</head>
<body>
<ul>

    <a href="itms-services://?action=download-manifest&url=http://us.www.mysite.com/install.plist">
        Install App</a>
</ul>
</body>
</html>

install.plist

<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://us.www.mysite.com/myapp1_0.ipa</string>
        </dict>
                <dict>
                    <key>kind</key>
                    <string>display-image</string>
                    <key>url</key>
                    <string>http://us.www.mysite.com/icon.png</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>full-size-image</string>
                    <key>url</key>
                    <string>http://us.www.mysite.com/icon@2x.png</string>
                </dict>
      </array>

             <key>metadata</key>
        <dict>
        <key>bundle-identifier</key>
        <string>com.mysite.myapp</string>
        <key>bundle-version</key>
        <string>1.0</string>
        <key>kind</key>
        <string>software</string>
        <key>title</key>
        <string>My App</string>
        </dict>
      </dict>
    </array>
 </dict>

+1

, HyperLink, A.

0

<?xml version="1.0" encoding="UTF-8"?> plist, .

-1
source

All Articles