2013-09-24 8 views
5

Ktoś wie, co to znaczy?Proszę dołączyć kCFBundleIdentifierKey w słowniku opcji podczas instalowania aplikacji.

Próbował zaktualizowaniu aplikacji na iOS 7 i testowano je na iPadzie 2 i napotykają te dzienniki ostrzegawcze i komunikaty o błędach w konsoli:

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 

nr Katastrofy Logi są rejestrowane.

EDIT:

mam to w moim Info.plist

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

ale to w zasadzie com.site.my, właśnie edytowany prawdziwą nazwę.

+0

Brzmi jak aplikacja nie posiada identyfikator pakietu. –

+0

to ja właśnie edytowane go tutaj, więc w zasadzie jest to coś jak com.site.my = \t CFBundleIdentifier \t com.site.my to jest w moim Info.plist – RegisteredUser

Odpowiedz

0

Czy sprawdzić czy wiązka ID jest w plist

0

miałem ten sam problem, a to dlatego, że jeden z strąków używałem miał katalog „zasoby”. Naprawienie tego problemu po rozwiązaniu problemu this advice rozwiązało problem.

2

Miałem ten sam problem i nie mogłem zainstalować ipa. Zawsze kończyło się błędem "Nie można sprawdzić pakietu aplikacji." a niektóre ostrzeżenia w konsoli urządzenia

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 … 

Po spędzać czas, mam to ustalone przez dodanie „Aplikacja wymaga środowiska iPhone” w Info.plist

<key>LSRequiresIPhoneOS</key> 
<true/> 
Powiązane problemy