Questions tagged [firebase-remote-config]

Firebase Remote Config allows developers to optimize and customize their iOS, Android and Web apps on the fly.

About Firebase Remote Config

Firebase Remote Config is a component of the Firebase suite of tools for cross-platform application development.

  • Modify your app without a new production deployment
  • Customize content for different Firebase Analytics audiences and measure results
  • Roll out features gradually and monitor the impact

Related tags

584 questions
18
votes
3 answers

How to clone an existing Firebase project data to another new project?

I want to clone an existing Firebase project, lets name it ProjectA that previously exists on Firebase console with some Remote Config data to another new project(without any Remote Config data), lets name it ProjectB. The idea behind my question is…
epool
  • 6,710
  • 7
  • 38
  • 43
17
votes
6 answers

Firebase Remote Config App Version condition

The Firebase Remote Config App version condition seems to be ignored. I've made the following setup to play around with my current development version: xCode Version setup: Firebase Remote Config Condition setup: FIRRemoteConfig won't return the…
stsandro
  • 343
  • 1
  • 2
  • 10
16
votes
1 answer

Firebase Remote Config: Version condition is disabled for Unity projects

I have a project in which I have to change remote config values of some parameters for each version. When I try to use version code while setting conditions in remote config, it is always grayed and not interact-able. Am I missing something or is…
15
votes
2 answers

How to get updated remote config values after setting user properties

I'm currently running an A/B test on a remote config value in Firebase. The target of the test is for users with a user property X that is contained in a regex. My problem is that I fetch the remote configs for the user BEFORE setting the user…
15
votes
7 answers

Add new line character in remote config text

I'm doing Firebase RemoteConfig integration. In one of the scenarios, I need to break a text line, so I tried to use new line character (\n). But this is not working, it is neither displaying as an extra character nor creating another line.
CoDe
  • 11,056
  • 14
  • 90
  • 197
15
votes
4 answers

Android: Firebase remoteConfig getString() method is removing quotes from string inside default.xml

i have the following remote config_default.xml file LOCAL_JSON [{"title":"TitleA","path":"pathA","image_url":" Some URL…
15
votes
3 answers

How to define an experiment for first time users in Firebase?

I am trying to create an experiment using Firebase remote config. The criteria is as follows: It should target only new users who have not used the app ( opening the app for the first time) Now on further research I found that there is a user…
sjmach
  • 426
  • 6
  • 15
14
votes
1 answer

Firebase Remote Config App Version condition comparison

I'm using Firebase Remote Config, and I'm trying to wrap my head around the App Version conditions. https://firebase.google.com/docs/remote-config/parameters#rule_types says I must do String matching on it. But I really need a way to say parameter_x…
Scott Kennedy
  • 1,346
  • 12
  • 23
14
votes
1 answer

Firebase remote config condition by userId

I integrated Firebase into my Android project, to get a different parameter value for different application user. I did the following: Setup users in my Firebase Project Created audiences to match the users: UIDs were AAAAAAA..., and BBBBBBB...…
14
votes
3 answers

Is there an API to *change* Firebase Remote Config values?

Firebase console support easy way to configure remote configuration parameter. In our app we have remote configuration different per user, and those configuration are set on our own web portal. Is there any API by which I can push configs from my…
GaneshP
  • 746
  • 7
  • 25
13
votes
2 answers

Android Firebase Remote Config: Application name is not set. Call Builder#setApplicationName

Whenever I call FirebaseRemoteConfig.getInstance(), I get this warning: W/zze: Application name is not set. Call Builder#setApplicationName. I've updated the json config file from Firebase, but it remains the same. It does not affect any…
rednuht
  • 1,724
  • 16
  • 27
13
votes
1 answer

Firebase Remote Config getInt() missing

Firebase provides the following methods: getBoolean() getByteArray() getDouble() getLong() getString() https://firebase.google.com/docs/remote-config/use-config-android#get-parametervalues-to-use-in-your-app But getInt() is missing from this list,…
James
  • 3,485
  • 3
  • 20
  • 43
12
votes
1 answer

Firebase Config: ClassNotFoundException

I'm seeing following error after adding RemoteConfig. 2020-04-02 16:47:06.844 12100-12100/removed W/ComponentDiscovery: Class com.google.firebase.remoteconfig.ktx.FirebaseConfigKtxRegistrar is not an found. java.lang.ClassNotFoundException:…
The_ehT
  • 1,202
  • 17
  • 32
12
votes
3 answers

"'isDeveloperModeEnabled' is deprecated: This no longer needs to be set during development. " What is isDeveloperModeEnabled used for

As a part of upgrading the code base to Swift5, I have updated Firebase pod in my project. After that i started getting warning as below. isDeveloperModeEnabled is deprecated: This no longer needs to be set during development. Refer to…
user1751876
  • 149
  • 1
  • 5
12
votes
3 answers

How long does Firebase throttle you?

Even with debug enabled for RemoteConfig, I still managed to get the following: Error fetching remote config values Optional(Error Domain=com.google.remoteconfig.ErrorDomain Code=8002 "(null)" …
4thSpace
  • 43,672
  • 97
  • 296
  • 475
1
2
3
38 39