0

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.

Community
  • 1
  • 1
A. Buksha
  • 830
  • 9
  • 14

1 Answers1

-1

try this line:

pod 'Firebase', '~> 2.4'
Cœur
  • 37,241
  • 25
  • 195
  • 267