Paul Brittain
Paul Brittain

Reputation: 328

React Native run-ios with .xcworkspace

react-native run-ios --project-path 'ios/myProject.xcworkspace' --simulator=\"iPhone 8 Plus\"

Specifying the project path to the .xcworkspace file fails Could not find Xcode project files in ios folder

I've seen that this is an item proposed in the React Native roadmap: https://react-native.canny.io/feature-requests/p/specifying-the-xcworkspace-to-be-used-in-the-command-line-options

Is there a way (right now) to use Cocoapods with React Native and run with the command line? I'm aware that it works perfectly fine when building through xcode.

Thanks

Upvotes: 4

Views: 8803

Answers (1)

redbmk
redbmk

Reputation: 4796

You should just be able to run it without --project-path. You would use --project-path to specify ios (the folder containing both .xcworkspace and .xcodeproj. Then the CLI will automatically pick .xcworkspace if it exists, otherwise it will pick .xcodeproj. When you start you should get a message like this:

Found Xcode workspace myProject.xcworkspace

Upvotes: 2

Related Questions