Does anyone know why in the navigator of my Xcode project my Pods.xcodeproj file is listed in red? I am assuming that means Xcode cannot find the file so how do I make sure it actually does exist in the project.
Thanks!
Does anyone know why in the navigator of my Xcode project my Pods.xcodeproj file is listed in red? I am assuming that means Xcode cannot find the file so how do I make sure it actually does exist in the project.
Thanks!
run pod install in your workspace directory. It will install all the dependencies for you.
Do the usual Xcode fix stuff e.g. delete derived data and clean the project. Then, in Terminal, go to the directory that contains your Podfile
. Once there, run these commands:
$ pod deintegrate
$ pod install
First you need to install cocoa pods on your Mac. For that you need to go cocoapods.org
If you want to uninstall cocoa pods then refer this ans.
So first remove cocoa pods from your project and then install again.
Make sure you open workspace .xcworkspace
not .xcodeproj
project file.