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?
Open your project podfile by typing : open podfile 3.) In your podfile edit the deployment target below which is the 8.0. platform :ios, '8.0' You may replace it with higher deployment target like 9.0, 9.1, 10.0 or higher. Save this answer.
In short, every application that runs on one of Apple's platforms has a deployment target. A deployment target is nothing more than the minimum version of the operating system the application can run on. Fire up Xcode and create a new project by choosing the App template from the iOS > Application section.
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'
....
....
....
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With