Simctl install не может найти идентификатор пакета.приложение при установке приложения в симуляторе

когда я пытаюсь установить свое приложение в загруженном симуляторе, например:

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.

когда я проверяю информацию.файл 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

первая косая черта не должна быть там... вот так просто:--3-->

xcrun simctl install booted build/iphone/build/Debug-iphonesimulator/foo.app