-1

I try to build my App with Pods but it doesn´t work. I already set the variables PODS_ROOT and PODS_PODFILE_DIR_PATH also id dit run 'pod install' but it still doesn´t work. Always getting this error below

enter image description here

do anyone have a solution for this problem? i tried many methods.

leo180593
  • 19
  • 1
  • 7

1 Answers1

0

This usually happens when the pod configuration is modified outside the pod installation (for example, cloning a repository and running it in a different machine, without a clean pod install)

Try the following solution:

1 - In your project folder, delete the Podfile.lock file

2 - On the terminal, in your project folder, run the command: pod deintegrate --verbose

3 - On the terminal, in your project folder, run the command: pod install --verbose

alxlives
  • 5,084
  • 4
  • 28
  • 50