Search code examples
iosfirebasecocoapodspodfile

Installing Firebase 2.4.3 cocoapods


I am trying to install Firebase to my project with cocoapods. I modified pod file by adding line

pod 'Firebase', '>= 2.4.3'

And when I type pod install to terminal it gives me an error:

[!] Unable to satisfy the following requirements:

  • Firebase (>= 2.4.3) required by Podfile

I tried to uncomment and change global "platform" directive to "platform :ios, '9.0'", but it didn't help me, error still there.


Solution

  • try this line:

    pod 'Firebase', '~> 2.4'