简体   繁体   中英

Download ios application

I have an IOS application that I want to download from a link existing in a web application. I have created a plist file containing the URL of the "ipa" . But when I click on the link from my iPhone, I get this message: "cannot connect to ...".

This is my plist file:

<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://blabla.fr:8443/test.ipa</string>
          </dict>
        </array>
        <key>metadata</key>
        <dict>
          <key>bundle-identifier</key>
          <string>com.mycompany.test</string>
          <key>bundle-version</key>
          <string>1.3</string>
          <key>kind</key>
          <string>software</string>
          <key>title</key>
          <string>test</string>
        </dict>
      </dict>
    </array>
  </dict>
</plist>

My plist and ipa files are accessible from an URL on port 8443.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM