2013-09-24 6 views
5

これは何を意味するのですか? IOS 7に私のアプリを更新しようとしたとiPad 2に及びコンソールでこれらの警告およびエラーログに遭遇し、それをテストしアプリをインストールするときにオプションディクショナリにkCFBundleIdentifierKeyを含めてください

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 

ませんクラッシュログが記録されています。

EDIT:

私は私のInfo.plist

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

でこれを持っていますが、それは基本的にcom.site.myだ、私はここで本当の名前を編集しました。

+0

の「アプリケーションは、iPhoneの環境が必要です」のアプリが持っていないようですねバンドル識別子。 –

+0

これが私のInfo.plistにある= \t CFBundleIdentifier \t com.site.myをそれは私はちょうどここでそれを編集したので、基本的にはcom.site.myのようなものです – RegisteredUser

答えて

0

あなたのバンドルIDは、私は同じ問題を抱えていたし、私が使っていたポッドの一つは、「リソース」ディレクトリを持っていたので、それがあったあなたのplist

0

であるかどうかを確認しました。 this adviceの後にこのポッドを修正すると問題が解決しました。

2

私は同じ問題があったし、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

<key>LSRequiresIPhoneOS</key> 
<true/> 
関連する問題