skip to Main Content

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

Picture for my xcode error

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


  1. I’ve ran into this before. What’s happening is Bundler is not installed/not working right. This should help you out:

    1. cd ios to get into your ios folder
    2. bundle install
    3. 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 run sudo gem install cocoapods in your ios folder.

    Login or Signup to reply.
  2. First of all you should remove your DerivedData with

     rm -rf ~/Library/Developer/Xcode/DerivedData
    

    And then go on

    project -> Build Phase -> Link Binary with libraries and add all pod libraries.

    HERE some one also have same issue and got many answers that you can try to resolved that issue.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search