CocoaPods and Node Reset
The CocoaPods integration will see frequent updates as we rollout the New Architecture, and it is possible to end up with your workspace in a broken state after one of these changes. You may clean up any changes related to the codegen by performing some of these steps:
- Run
pod deintegrate
in your ios directory (or wherever your Podfile is located) and re-runpod install
(orarch -x86_64 pod install
, in case of a Mac M1). - Delete
Podfile.lock
and re-runpod install
(orarch -x86_64 pod install
, in case of a Mac M1). - Delete
node_modules
and re-runyarn install
. - Delete your codegen artifacts and re-run
pod install
(orarch -x86_64 pod install
, in case of a Mac M1), then clean and build your Xcode project.