2014-09-19 56 views
4

我有最终版本的XCode 6(6.0.1版)。在我的项目中,运行时遇到问题。 我得到了无法检查应用程序包

“应用程序安装失败 - 无法检查应用程序包”。

如果我再次运行项目,它运行正常。再次运行,再次出现问题...等等。因此,每次运行都以这个错误结束,在应用程序运行之后立即执行。 我在Xcode 5中没有问题。

+0

我也是。你有没有找到解决方案? – Jing 2014-09-26 06:16:30

+0

@Jing不,我没有 – 2014-09-26 07:03:13

+0

我有同样的问题 – daviesgeek 2014-10-01 02:09:29

回答

0

如果您已将名为resourcesresource的文件夹移动或复制到您的项目中,请尝试重命名它。然后执行clean

0

我有同样的问题,并无法安装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 … 

一些警告花费数小时后,我把它固定通过添加“应用程序需要iPhone环境”中的info.plist

<key>LSRequiresIPhoneOS</key> 
<true/> 
相关问题