5

我有一个通过 OTA 分发的企业应用程序。当我尝试安装它时,我从 Xcode 设备日志中收到此错误:

 LoadExternalDownloadManifestOperation: Canceling failed manifest
 download for replace: [MyBundleID]
 [MIClientConnection uninstallIdentifiers:withOptions:completion:]: 
 Uninstall requested by itunesstored (pid 2029) for identifier MyBundleID with options:

设备错误信息

这是我的 manifest.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://myDomain/api/iosEventAppLink/EventApp.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>xxx.com.domain.EventApp</string>
                <key>bundle-version</key>
                <string>1.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>AppName</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

任何帮助将不胜感激

4

4 回答 4

5

对于任何试图获得有关为什么会发生这种情况的更多信息的人:

  • 将你的 iDevice 连接到你的 Mac
  • 在您的 iDevice 上“信任”您的 Mac
  • 在 Mac 上打开 console.app
  • 在左侧,在“设备”下选择您的 iDevice。
  • 要清除噪音,请在右上角搜索:不带引号的“process:appstored”。
于 2018-03-29T14:13:36.620 回答
1

请确保导出存档以创建 .IPA 文件时的选项。 使用“Save for Ad Hoc Deployment”或“Save for Enterprise Deployment”。 当我使用选项“Save for iOS App Store Deployment”创建 .IPA 文件并尝试通过网站安装应用程序时,我遇到了同样的错误“无法下载应用程序此时无法下载”。

在此处输入图像描述

于 2016-11-04T06:13:25.857 回答
0

这个问题有相同错误信息的解决方案。 “无法下载应用程序。目前无法安装 <Appname>”

我也遇到过这个问题。就我而言,设备上的证书存在问题。我不得不删除它并重新安装。

于 2016-06-11T22:47:45.143 回答
0

就我而言,问题是我没有在提示时确认 iCloud 密码。因此,请确保您确认 iCloud 密码并重新启动设备并重试。希望它会帮助某人。

于 2016-05-27T10:01:11.667 回答