5

有人知道这是什么意思吗?

尝试将我的应用程序更新到 ios 7 并在 iPad 2 上对其进行了测试,并在控制台中遇到了这些警告和错误日志:

Sep 24 16:23:56 iPad mobile_installation_proxy[118] <Warning>: LaunchServices: Please include the kCFBundleIdentifierKey in the options dictionary when installing an app.
Sep 24 16:23:56 iPad mobile_installation_proxy[118] <Warning>: LaunchServices: installing app for existing placeholder (null)
Sep 24 16:23:56 iPad installd[59] <Notice>: 0x2d5000 handle_install_for_ls: Install of "/var/mobile/Media/PublicStaging/THISAPP.app" requested by mobile_installation_proxy
Sep 24 16:23:56 iPad installd[59] <Notice>: 0x2d5000 MobileInstallationInstall_Server: Installing app com.<bundle>.<identifier>
Sep 24 16:23:56 iPad installd[59] <Error>: profile not valid: 0xe8008012
Sep 24 16:23:56 iPad installd[59] <Error>: 0x2d5000 install_embedded_profile: Could not install embedded profile: 0xe8008012
Sep 24 16:23:57 iPad installd[59] <Notice>: 0x2d5000 MobileInstallationInstall_Server: Staging: 0.08s; Waiting: 0.05s; Installation: 0.53s; LS Sync: 0.00s; Overall: 0.75s
Sep 24 16:23:57 iPad /usr/libexec/lsd[70] <Error>: Need to synchronize with MobileInstallation
Sep 24 16:23:57 iPad /usr/libexec/lsd[70] <Notice>: LaunchServices: Adding com.<bundle>.<identifier> to registration list

没有记录崩溃日志。

编辑:

我的 info.plist 中有这个

<key>CFBundleIdentifier</key>
<string>com.<bundle>.<identifier></string>

但它基本上是com.site.my,我只是在这里编辑了真实姓名。

4

3 回答 3

3

我遇到了同样的问题,无法安装ipa。它总是以错误“无法检查应用程序包”结束。以及设备控制台中的一些警告

Feb 10 17:38:16 iPhone mobile_installation_proxy[356] <Warning>: LaunchServices: Please include the kCFBundleIdentifierKey in the options   dictionary when installing an app.
Feb 10 17:38:16 iPhone mobile_installation_proxy[356] <Warning>: LaunchServices: installing app with unknown bundleID
.
.
Feb 10 17:38:16 iPhone installd[44] <Error>: 0x101bcc000 -[MIBundle _validateWithError:]: 28: Failed to load Info.plist from bundle at path
Feb 10 17:38:16 iPhone installd[44] <Error>: 0x101bcc000 + [MIInstallable installablesAtURL:packageFormat:userOptions:error:]: Failed  to create bundle for …

花了几个小时后,我通过在 info.plist 中添加“应用程序需要 iPhone 环境”来修复它

<key>LSRequiresIPhoneOS</key>
<true/>
于 2015-02-11T02:17:51.750 回答
0

您是否检查过您的捆绑 ID 是否在您的 plist 中

于 2014-03-12T11:06:09.017 回答
0

我遇到了同样的问题,这是因为我使用的一个 pod 有一个“资源”目录。按照这个建议修复这个 pod解决了这个问题。

于 2014-03-19T13:36:57.487 回答