so I used Venmo/Synx on my Xcode project with CocoaPods, and it completely screwed everything up.
I was able to fix the Manifest.lock and Podfile.lock errors, but now I
1- Remove your Pods
folder Podfile.lock
and xcworkspace
files root in your project.
2- Open .xcodeproj
3- Go to Build Settings and under Build Options search Always Embed Swift Standard Libraries
4- Update its value with $(inherited)
5- Close project and pod install
again
I had the same error and I fixed in following way
1 - Goto your projected setting by blue icon of your project from left pan 2 - Select your project under the project 3 - Select Info window 4 - Check IOS deployement target. This target should be same as you set in general settings of your project (Pic 2).
I had the same problem with Xcode 11
but I just updated CocoaPods and it worked.
sudo gem install cocoapods
pod install
againI had the same problem in Xcode 6.1.1. I did the following to solve it:
*The configuration file setting is found by selecting the project (not the target) and then the Info tab.
For me, this caused after I updated cocoapods. So, I downgraded and the build worked again.
To downgrade, first list of all your versions:
sudo gem list cocoapods
Then specify the you want to delete (for me was 1.8.4):
sudo gem uninstall cocoapods -v 1.8.4
Then, with 1.5.3 worked!