Xcodebuild failed #397
-
⛔️ Error: Xcodebuild failed. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In case you need commands: bundle exec pod install |
Beta Was this translation helpful? Give feedback.
Hello @denandreychuk!
First of all, could you please provide an example to reproduce the issue?
This would be greatly appreciated.
Do you include targets with different options (such as
use_frameworks!
) in your Podfile? If so, you should only build one target at a time, as Rugby builds all targets in the Pods project by default.For example, take a look at the Podfile of the Rugby Example project. There are two different targets defined there:
They group similar pods together, but in a different way.
You can build the configuration like this:
> rugby build --targets Pods-ExampleFr…