Установка Simctl не может найти Идентификатор пакета в.app при установке приложения в симуляторе
Когда я пытаюсь установить приложение в загруженном симуляторе, вот так:
xcrun simctl install booted /build/iphone/build/Debug-iphonesimulator/foo.app
Я получаю следующий результат:
An error was encountered processing the command (code=22):
Failed to install the requested application
The bundle identifier of the application could not be determined.
Ensure that the application's Info.plist contains a value for CFBundleIdentifier.
Когда я проверяю Info.plist внутри.app, CFBundleIdentiefier там и правильно.
<key>CFBundleIdentifier</key>
<string>com.bar.foo</string>
Я использую xcode 6.3.2 на Yosemite
Симулятор загружается во время установки.
Что я делаю неправильно?
1 ответ
Решение
Все, что было, было неправильным путем
xcrun simctl install booted /build/iphone/build/Debug-iphonesimulator/foo.app
Первая косая черта не должна быть там... так просто:
xcrun simctl install booted build/iphone/build/Debug-iphonesimulator/foo.app