Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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
like image 560
svaithin Avatar asked Jun 12 '16 06:06

svaithin


1 Answers

Maybe your pod isn't synced? Try:

pod repo update --verbose
like image 88
orxelm Avatar answered Sep 28 '22 17:09

orxelm