Incorrect path for Pods.debug.xcconfig in Xcode?
If your path to pods in error is wrong try this:
- use
pod deintegrate
- delete all pod remains files -
Podfile.lock
,Pods
,<Project>.xcworkspace
- open
<Project>.xcodeproj
- remove
Pods
project on left side - try
pod install
I had the same problem in Xcode 6.1.1. I did the following to solve it:
- Set the configuration file setting* "None" for the Pods related target.
- Close the .xcworkspace.
- run pod install again
- now open and build your .xcworkspace
*The configuration file setting is found by selecting the project (not the target) and then the Info tab.