2014-09-19 44 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/> 
相關問題