Reputation: 85
I'm unable to install Firbase pod, 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
Upvotes: 7
Views: 7337
Reputation: 1166
You could try pod 'Firebase/Core' Instead of just pod 'Firebase'. I had the same problem and it worked for me.
Upvotes: 3
Reputation: 2437
Try below commands:
pod repo remove master
pod repo update
pod install --verbose
Upvotes: 1
Reputation: 22212
In my case the problem was with my local pod repo. I fixed by doing the following:
pod repo remove master
pod setup
pod install
Upvotes: 5