I am getting this react native error while building my app. I am trying to build my app but getting this error from a week.
I just cloned a new project did pod install and tried to build. i have also done pod install –repo update
I have tried:
-pod install
- delete pods and install again with –repo update
and all possible solutions that are in stackoverflow
Update :
I have updated the detailed error in screenshot [1]:https://phpout.com/wp-content/uploads/2024/01/fezbZ.png
2
Answers
I’ve ran into this before. What’s happening is Bundler is not installed/not working right. This should help you out:
cd ios
to get into your ios folderbundle install
bundle exec pod install
If you run into an error such as
Could not locate Gemfile
, that means you haven’t installed Cocoapods yet. You’ll want to runsudo gem install cocoapods
in your ios folder.First of all you should remove your
DerivedData
withAnd then go on
HERE some one also have same issue and got many answers that you can try to resolved that issue.