Build fails with “Command failed with a nonzero exit code”

前端 未结 30 2741
栀梦
栀梦 2020-11-28 09:15

When I try to build my app with Xcode, an error interrupts the build process:

Command CompileStoryboard failed with a nonzero exit code

30条回答
  •  佛祖请我去吃肉
    2020-11-28 09:29

    For me the problem was that on my Podfile I didn't put use_frameworks!. I just uncomment that line, run pod install on the terminal again. And it got fixed.

    It was commented since the app was entirely made on Objective-C. Since the app now uses Swift I had to make that change on the Podfile

提交回复
热议问题