Errors after updating to Xcode 8: “No such module” and “target overrides the `EMBEDDED_CONTENT_CONTAINS_SWIFT`build setting”

后端 未结 5 396
野性不改
野性不改 2020-12-12 15:32

I\'m getting No such module for Pods when I try to build the project. If I remove the code expecting this Pod, another \'No such module\' comes up for another P

5条回答
  •  一向
    一向 (楼主)
    2020-12-12 16:12

    This is what I worked for me:

    pod deintegrate || rm -rf Pods
    pod install --verbose
    rm -rf ~/Library/Developer/Xcode/DerivedData
    

    Then I just clean my project and build it again.

提交回复
热议问题