firebase / firebase-ios-sdk

Firebase SDK for Apple App Development
https://firebase.google.com
Apache License 2.0
5.66k stars 1.48k forks source link

firebase sdk 7.0.0 update not working #7020

Closed colondeethpark closed 3 years ago

colondeethpark commented 3 years ago

[READ] Guidelines

When filing a feature request please make sure the issue title starts with "FR:".

A good feature request ideally

Once you've read this section, please delete it and fill out the rest of the template.

Feature proposal

Describe your use case and/or feature request here.

I am currently using firebase using cocoapods. The current version is 6.34.0 I want to update to the latest version

But I raised it to project ios sdk 10.0 I also uploaded the pod file to 10.0 Firebase is not updated to the latest version. How do I use version 7.0.0 or higher?

=-=------ Podfile.lock file PODS:

Podfile pod 'Firebase/Crashlytics' pod 'Firebase/Analytics' pod 'Firebase/Performance' pod 'Firebase/Core' pod 'Firebase/MLVision' pod 'Firebase/MLVisionFaceModel'

google-oss-bot commented 3 years ago

I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.

ZComwiz commented 3 years ago

colondeethpark - You can try using this format in your cocoapod and see the errors of cross dependencies:

pod 'Firebase/Core', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => '7.1.0'

Also run pod update to refresh your local repo before calling pod install.

paulb777 commented 3 years ago

Likely, the problem is pod 'Firebase/MLVisionFaceModel'. MLVisionFaceModel was deprecated in Firebase 6.x and removed in Firebase 7.x.

See https://developers.google.com/ml-kit/migration/ios for information about migrating it to the new MLKit replacement.

I'll close this issue, but feel free to continue the conversation here if you have more questions.