7

私は深刻な問題に直面しています。エンタープライズ アプリをライブにしようとしています。BetaBuilder を使用して、次の手順に従います。

myApp.ipa
manifest.plist
index.html

マニフェスト.plist:

<?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://example.com/ios/myapp.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.com.myapp</string>
                <key>bundle-version</key>
                <string>1.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>Myapp</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

および index.html ファイル:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Myapp - Beta Release</title>
</head>
<body>

<div id="container">
  <h1>iOS 4.0 Users:</h1>
  <div class="link"><a href="itms-services://?action=download-manifest&url=https://example.com/ios/manifest.plist">Tap Here to Install</a>
  </div>
</div>

</body>
</html>

へのリンクも作成しhttpましたhttps。しかし、それは常に言う: Cannot connect to example.com. セットアップの何が問題になっていますか?

4

1 に答える 1

8

Over-The-Air iOS ディストリビューションは、検証済みの SSL 証明書を使用して SSL を使用して提供する必要があります。

OTA を配布するには、次の手順に従う必要があります。

1).plistアプリケーション ダウンロード用のマニフェストを含む、生成されたファイルへのリンクを提供します。このリンクは、検証済みの SSL 証明書を使用して SSL 経由で提供する必要があります。.plist有効なファイルの例は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//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://[full download url].ipa</string>
          </dict>
        </array>
        <key>metadata</key>
        <dict>
          <key>bundle-identifier</key>
          <string><full bundle identifier></string>
          <key>bundle-version</key>
          <string>[version string]</string>
          <key>kind</key>
          <string>software</string>
          <key>title</key>
          <string>[software name]</string>
        </dict>
      </dict>
    </array>
  </dict>
</plist>

2)ファイル 内の URL キーは.plist、有効な SSL 証明書から提供される必要があります。

現在、私はあなたのサーバー設定の 100% ではありませんが、Web サーバーが.plist拡張機能だけでなく拡張機能にも正しく応答しない可能性があります.ipa。次のファイル拡張子 \ mime-type を認識するように Web サーバーを設定する必要があります。

  • 拡大:.plist
  • MimeType:application/xml

  • 拡大:.ipa

  • MimeType:application/octet-stream

アプリケーションを無線で展開するには、最初は多くの問題がありました。最大のハードルは、SSL 証明書と MimeTypes に関するものでした。

最後のコメントとして、あなたには独自のドメインがあり、リンクまたは plist ファイルで example.com を使用していないと確信しています。

乾杯..

于 2015-04-10T11:18:17.373 に答える