How to solve this issue. I have downloaded the iOS project from the Git repo and when I try to build, it gives an error:
Check dependencies
The file “Pods.xcconf
You may be using the Xcode default project file. After installing the framework through pod, you must use the generated xcworkspace in the project folder.
Example : SampleProject.xcworkspace.
Closing Xcode, pod update and pod install didn't help me.
I just ran the install cocoapods command again:
sudo gem install cocoapods
If you see error:
You don't have write permissions for the /usr/bin directory
Use next command:
sudo gem install cocoapods -n /usr/local/bin
I've experience a similar situation, for me, it's an error stop all the pods to be updated when I ran pod update.
Try to resolve the error and run pod update again, clean your project then try to build again.
Hey i had this same problem, I was getting the following error when running pod update however i didn’t realise the update wasn’t working.
$ pod update
Analyzing dependencies /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/pathname.rb:422:in `open': No such file or directory
It was because I forgot to run "pod setup" after installing cocoapods. I ran pod setup from the terminal, followed it up with pod update (or pod install) and everything went to plan.
I found a good hint inside the issues of CocoaPods
on GitHub
, try this:
pod install