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
do anyone have a solution for this problem? i tried many methods.

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.lockfile2 - On the terminal, in your project folder, run the command:
pod deintegrate --verbose3 - On the terminal, in your project folder, run the command:
pod install --verbose