Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Remote Config with Namespace

The Firebase API for RemoteConfig has several methods for assigning config values by namespace, eg (setDefaults(R.xml.rc_defaults, "Namespace")). I've got this to work in terms of separating config values by namespace on Android, but how to do I set those values by namespace on the Firebase Console for remote updating?

Where is the Namespace assigned?

like image 243
JCricket Avatar asked Jun 22 '16 03:06

JCricket


People also ask

How do I get data from Firebase remote config?

Getting started Run the sample on an Android device or emulator. Change one or more parameter values in the Firebase Console (the value of welcome_message , welcome_message_caps , or both). Tap Fetch Remote Config in the app to fetch new parameter values and see the resulting change in the app.

What is firebase remote config used for?

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.

Is remote config free firebase?

Firebase Remote Config is part of the Firebase platform and is available for free on both iOS and Android.

Is firebase remote config secure?

Firebase Remote Config And if you need limited amount of storage (which is absolutely FREE ) to store only credential things for all your Apps, then its pretty good and wise option to choose it. And the best part of it is this, its way more faster than your own App Server. So you can neglect the laziness of the server.


2 Answers

I work on Firebase Remote Config team.

As Safa mentioned, Namespaces were only designed for internal usage & are not meant for setting user assigned values. We have begun the process of deprecating the namespace usage from the SDK. Hence I would request not to use them in production code.

We are working on introducing namespaces via another mechanism. Will update this thread once that's ready.

Thanks!

like image 107
Mayank Jain Avatar answered Sep 21 '22 08:09

Mayank Jain


I experienced the same problem with you. So, I asked google Firebase team.

Here's the reply mail.


Hi there, Sorry for the late reply. Currently we don't have any custom namespace feature available. However, we are aware of the use case and we are actively working on it but I can't share any timelines at the moment.

Keep an eye out on our release notes for any further updates.

Let me know if you have any other questions.

Thanks


I hope this answer is little helpful to you :)

like image 45
WoorazilBoy Avatar answered Sep 18 '22 08:09

WoorazilBoy