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
Maybe your pod is out of sync? Try:
pod repo update --verbose
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
You can try the pod 'Firebase / Core' instead of just signing "Firebase". I had the same issue and it worked for me.
Try the following commands:
pod repo remove master pod repo update pod install --verbose