Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cloud FireStore minimum deployment target

I'm getting the following error when trying to enable an app with Cloud FireStore:

[!] Unable to satisfy the following requirements:

- `Firebase/Firestore` required by `Podfile`

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

I changed the podfile requirement to 10.2 and my xcode deployment to 10.2 and I am still getting this error. Any suggestions?

Edit:

Solution for me: I did

pod repo update
pod install
pod update

in that order and it worked.

like image 367
Blue Avatar asked Oct 05 '17 18:10

Blue


People also ask

What is iOS deployment target?

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.

How much data can firestore handle?

Firestore places a limit of 1MB on the amount of data that can be stored in a single document. This is more than enough for most cases. However, things start to break down when using map and array type fields that can grow unbounded over time.

How many documents can firestore handle?

There is no limitation on the number of documents in Firestore collection but it has a limitation of the size of the document. The maximum size of a document is roughly 1 MiB (1,048,576 bytes). Show activity on this post.


1 Answers

I was adding to an existing project so I did

pod repo update
pod install
pod update 

it that order and it worked.

I'm not sure why this ordered worked, put my guess it would have something to clearing/reset something somewhere in the firebase add ons.

like image 129
Blue Avatar answered Oct 08 '22 17:10

Blue