svaithin
svaithin

Reputation: 85

Unable to find a specification for `Firebase`

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

Answers (4)

Rafaela Lourenço
Rafaela Lourenço

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

Rajesh.k
Rajesh.k

Reputation: 2437

Try below commands:

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

Upvotes: 1

Jorge Casariego
Jorge Casariego

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

orxelm
orxelm

Reputation: 1144

Maybe your pod isn't synced? Try:

pod repo update --verbose

Upvotes: 14

Related Questions