I have a project that was working perfectly, but after updating XCode to 14.3, I can’t generate the build anymore.
In fact, now it gives the error "No such module Result".
I’ve already performed several activities such as updating Xcode, cleaning the build folder, applying pod deintegrate
, updating cocoapods and I don’t get results.
Importantly, as of Xcode 14.3 beta there is no longer a Rosetta architecture option, so I believe it is something related to the Apple Silicon architecture.
2
Answers
Try to upgrade the pod to
or try to add this ad the end of podfile and make a clean + pod install + build
or try to switch to xcode 13 compatible project document
on my case i just added this line
to
Podfile
and its working both xcode 14.3.1 and 14.2,
Good luck!