We are trying to upgrade from Fabric Crashlytics SDK to Firebase Crashlytics SDK. However, when trying to upgrade, we are unable to do so. The error is:
[!] CocoaPods could not find compatible versions for pod "Firebase/Crashlytics": In Podfile: Firebase/Crashlytics
Specs satisfying the
Firebase/Crashlyticsdependency were found, but they required a higher minimum deployment target.
Additional details:
The current deployment target of our app is iOS 9, which we just recently upgraded. We are also using Objective C as the main language for this project.
Current content of our podfile includes
pod 'Fabric', '~> 1.10.0'
pod 'Crashlytics', '~> 3.13.0'
My questions are
- Is it possible to still use Firebase/Crashlytics without upgrading our deployment target?
- What is the minimum deployment target that can use the new Firebase/Crashlytics sdk?
Thank you!