Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the limit to the number of parameters you can have in Firebase Remote Configs for one project

Just started using the Firebase Remote Configs and could not find in the docs where it states the limit to the number of config parameters for one project. Anyone on the team know ?

like image 303
alexmleone Avatar asked May 24 '16 15:05

alexmleone


People also ask

What is Remote Config in Firebase?

Remote Config gives you visibility and fine-grained control over your app's behavior and appearance so you can make changes by simply updating its configuration from the Firebase console.

How to check Firebase Remote Config?

In the Firebase console, open your project. Select Remote Config from the menu to view the Remote Config dashboard. Define parameters with the same names as the parameters that you defined in your app.

What file should be used for your remote config template?

Download Remote Config template defaults You can then include this file in your project and configure your app to import these values. You can download these files in XML format for Android apps, property list (plist) format for iOS apps, and JSON for web apps.

Where is remote config in Firebase console?

On the Firebase console navigation bar, click Remote Config. Add a parameter or choose a parameter to edit: To add a parameter: Click Add Parameter.


1 Answers

The docs have been updated to include the limits.

Within a Firebase project, you can have up to 2000 parameters, and up to 500 conditions. Parameter keys can be up to 256 characters long, must start with an underscore or English letter character (A-Z, a-z), and may also include numbers. The total length of parameter value strings within a project cannot exceed 800,000 characters.

like image 137
Arthur Thompson Avatar answered Sep 28 '22 04:09

Arthur Thompson