I am trying to update my Swift project to Firebase\'s new SDK Version 4.0.0 using CocoaPods (as suggested by the documentation) but the updated SDK does not seem to be insta
I had the same problem and just fixed it by changing the pod subsec into the full name of the pods like this:
- pod 'Firebase/Core'
- pod 'Firebase/RemoteConfig'
+ pod 'FirebaseCore', '4.0.9'
+ pod 'FirebaseRemoteConfig', '2.0.3'
Rather weird that this confusion happened in the first place but at least this fixes it.