Home > database >  Command PhaseScriptExecution failed with a nonzero exit code - using CocoaPods
Command PhaseScriptExecution failed with a nonzero exit code - using CocoaPods

Time:10-30

I'm getting the following error when building my project: Command PhaseScriptExecution failed with a nonzero exit code. enter image description here

This is what I have in my [CP] Embed Pods Frameworks: enter image description here

I've also done a pod deintegrate and pod install but these frameworks continue to show in red:

enter image description here

I'm on Xcode Version 12.4 and my mac has an Apple M1 chip. Any thoughts as to what I could do to resolve this error?

CodePudding user response:

Clearing the Excluded Architectures solved the issue. I originally had arm64 and x86_64 excluded.

enter image description here

  • Related