How can i solve this Problem to build my App with Pods?

407 views Asked by At

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.

1

There are 1 answers

0
alxlives On

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