菜鸟教程小白 发表于 2022-12-12 21:14:43

iOS OTA 版本未下载


                                            <p><p>这是一个有点奇怪的问题。今天我为 OTA 分发构建了我的 iOS 应用程序的新版本。下载后突然提示“<strong>无法下载应用,此时无法下载‘ABC’</strong>”。但奇怪的是,如果我使用 xCode "<strong>Devices</strong>"工具安装相同的 ipa 文件,它会起作用。我检查了,仔细检查了下面的东西,但仍然无法正常工作。</p>

<ol>
<li>重新创建了新的配置文件。</li>
<li>添加不同的设备并创建新的配置文件。</li>
<li>使用不同的 mac 构建应用程序。</li>
<li>使用不同的 Apple 开发者帐户来构建应用程序。(创建的应用程序 ID、prov 配置文件等...)</li>
<li>即使我创建了一个空应用程序来查看我是否错误地修改了任何build设置。</li>
<li>重新生成 <code>manifest.plist</code> 文件。</li>
<li>检查了 html 文件,看看我是否链接到了正确的 plist 文件。</li>
<li>服务器也安装了有效的 SSL 证书。</li>
</ol>

<p>这是我的 manifest.plist 文件,</p>

<pre><code>&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&gt;
&lt;!DOCTYPE plist PUBLIC &#34;-//Apple//DTD PLIST 1.0//EN&#34; &#34;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#34;&gt;
&lt;plist version=&#34;1.0&#34;&gt;
&lt;dict&gt;
    &lt;key&gt;items&lt;/key&gt;
    &lt;array&gt;
      &lt;dict&gt;
            &lt;key&gt;assets&lt;/key&gt;
            &lt;array&gt;
                &lt;dict&gt;
                  &lt;key&gt;kind&lt;/key&gt;
                  &lt;string&gt;software-package&lt;/string&gt;
                  &lt;key&gt;url&lt;/key&gt;
                  &lt;string&gt;https://example.com/app/abc.ipa&lt;/string&gt;
                &lt;/dict&gt;
                &lt;dict&gt;
                  &lt;key&gt;kind&lt;/key&gt;
                  &lt;string&gt;display-image&lt;/string&gt;
                  &lt;key&gt;url&lt;/key&gt;
                  &lt;string&gt;https://example.com/app/&lt;/string&gt;
                &lt;/dict&gt;
                &lt;dict&gt;
                  &lt;key&gt;kind&lt;/key&gt;
                  &lt;string&gt;full-size-image&lt;/string&gt;
                  &lt;key&gt;url&lt;/key&gt;
                  &lt;string&gt;https://example.com/app/&lt;/string&gt;
                &lt;/dict&gt;
            &lt;/array&gt;
            &lt;key&gt;metadata&lt;/key&gt;
            &lt;dict&gt;
                &lt;key&gt;bundle-identifier&lt;/key&gt;
                &lt;string&gt;com.example.ap&lt;/string&gt;
                &lt;key&gt;bundle-version&lt;/key&gt;
                &lt;string&gt;1.0&lt;/string&gt;
                &lt;key&gt;kind&lt;/key&gt;
                &lt;string&gt;software&lt;/string&gt;
                &lt;key&gt;title&lt;/key&gt;
                &lt;string&gt;ABC&lt;/string&gt;
            &lt;/dict&gt;
      &lt;/dict&gt;
    &lt;/array&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</code></pre>

<p>这是我的html链接,</p>

<pre><code>&lt;a href=&#34;itms-services://?action=download-manifest&amp;url=https://www.example.com/app/manifest.plist&#34;&gt;Tap Here to Install ABC Application&lt;/a&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我解决了这个问题。其实这是一个愚蠢的:)</p>

<p>我做的唯一错误是没有添加'<code>www</code>',一旦我添加它就可以正常工作。</p>

<p>我不得不在任何地方使用“<a href="https://www.exam" rel="noreferrer noopener nofollow">https://www.exam</a> .....”。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS OTA 版本未下载,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38349361/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38349361/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS OTA 版本未下载