Could not find specification for "Firebase"

I cannot install the Firbase module when trying:

pod install Analyzing dependencies [!] Unable to find a specification for `Firebase` 

Here is my podfile:

 platform :ios, '9.0' target 'login' do # Comment this line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for login pod 'Firebase' pod 'Firebase/Auth' end 
+6
source share
4 answers

Maybe your pod is out of sync? Try:

 pod repo update --verbose 
+13
source

In my case, the problem was in my local pod repo. I fixed it by doing the following:

 pod repo remove master pod setup pod install 
+4
source

You can try the pod 'Firebase / Core' instead of just signing "Firebase". I had the same issue and it worked for me.

+2
source

Try the following commands:

pod repo remove master pod repo update pod install --verbose

0
source

All Articles