Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 238
user2181948 Avatar asked Jul 27 '16 01:07

user2181948


People also ask

How do you set a higher minimum deployment target in Xcode?

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.

What is iOS deployment target in Xcode?

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.


1 Answers

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'
....
....
....
like image 88
Mohamed Saleh Avatar answered Sep 16 '22 15:09

Mohamed Saleh