'Higher minimum deployment target' error when installing Firebase Crash Reports Pods for iOS

user2181948 picture user2181948 · Jul 27, 2016 · Viewed 22k times · Source

I'm attempting to install the Firebase Crash Reporting Pod for iOS. The core Firebase Pod installs fine, however when installing Crash Reporting, I get the following error via the terminal:

Specs satisfying the `Firebase/Crash` dependency were found, but they required a higher minimum deployment target.`

I've tried workarounds from other similar threads (eg. Firebase pod install - pod 'Firebase/Database' - Required a higher minimum deployment target), but still get the same error - is there another possible workaround? What is the minimum iOS version supported by the Firebase SDK?

Answer

Mohamed Saleh picture Mohamed Saleh · Nov 20, 2016

Make sure to change the minimum deployment target in Podfile so for example if the minimum deployment target is meant to be iOS 9, it should be changed to that minimum

platform :ios, '9.0'
....
....
....