CocoaPodsAdd to Podfile (according to the docs):
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
run pod repo update
run pod install
Output error:
[!] CocoaPods could not find compatible versions for pod "Firebase/Crashlytics":
In Podfile:
Firebase/Crashlytics
None of your spec sources contain a spec satisfying the dependency: Firebase/Crashlytics.
You have either:
pod repo update or with pod install --repo-update.I have ran pod repo update, also tried pod install --repo-update but no luck.
Full Podfile Firebase pods:
pod 'Firebase/Firestore', '~> 6.7.0'
pod 'Firebase/Core', '~> 6.7.0'
pod 'Firebase/Storage', '~> 6.7.0'
pod 'FirebaseMessaging', '~> 4.1'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
Ok I was able to solve it by using following set of dependencies:
pod 'Firebase/Firestore'
pod 'Firebase/Storage'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
Took the documentation about available pods here.
Hi @atereshkov, I'm glad to hear that the issue has been resolved. Feel free to comment here if you'll still encounter an issue so we can reopen it and continue on investigating the issue.
Most helpful comment
Ok I was able to solve it by using following set of dependencies:
Took the documentation about available pods here.