0

When I try to update my Firebase through cocoapods, Always its updating to 3.17.0 version - which is old. As per firebase docs, 6.4.0 is the latest version for iOS. Why i am not able to update to latest.

I have tried multiple ways to resolve this. But no luck.

FireBase Cocoa Pods Installation Not Working

FireBase Cocoa Pods Installation Not Working

platform :ios, '10.0' use_frameworks!

target 'the-name-of-target' do pod 'Firebase' end

I should be able to update to latest firebase framework.

Edit: Solved with workaround.

Google Signin framework having the dependency. As work around removed google sigenin pod & added as framework. Now i am able to update to latest the firebase to latest. Thanks.

Praveen
  • 126
  • 1
  • 6

3 Answers3

0

Try to clear pods cache and reinstall CocoaPods

SchrgCat
  • 451
  • 4
  • 5
0

Have you tried updating pods?

command for update all pods

pod update

for specific pod

pod update POD_NAME
Ali Pasha
  • 577
  • 5
  • 5
  • Google Signin framework having the dependency. As work around removed google sigenin pod & added as framework. Now i am able to update to latest the firebase to latest. Thanks. – Praveen Aug 01 '19 at 19:44
0

Examine the generated Podfile.lock to see which dependency forces Firebase's version to 3.x.

Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139
  • Solved with workaround. Google Signin framework having the dependency. As work around removed google sigenin pod & added as framework. Now i am able to update to latest the firebase to latest. Thanks. – Praveen Aug 01 '19 at 19:46