Whenever i initialize a react native project and run it for the first time, i always get the above error and my fix to this is
- comment out use_flipper!() in your podfile located in ios/ directory
# use_flipper!()
- delete this file -> podfile.lock
- delete Pods folder
- run
pod install
in terminal after navigating to the ios folder of your project. Then navigate back to the root of your project and try to build again. Hope this helps
Top comments (0)