3

I just updated Xcode to version 12. When I open up a previously working project I now get an error No such module 'GRDB'. I have tried deintegrating and reinstalling the Pods, cleaning the build folder, and restarting Xcode. Additionally, when I look under my Pods the Products and Frameworks are colored red (view picture).enter image description here

Bernard
  • 1,004
  • 1
  • 12
  • 21

2 Answers2

3

One observation: This issue only appears when building for the Simulator, building for the device works fine.

I go to build settings and find the problem my Architectures is arm64: enter image description here

and I change to Standard architectures for every target in my Pods project : enter image description here

kiril kiroski
  • 806
  • 7
  • 8
0

I came across a "solution". I am not sure why this fixed the problem but when I was running into build issues, I was building for an iOS simulator. If I change the build to "Any iOS Device (arm64)" or to my iPhone then the issue goes away.

Bernard
  • 1,004
  • 1
  • 12
  • 21