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
12
votes
2 answers

How is the Firebase Remote Config rate limit counted?

I am using Firebase Remote Config to store a secret key for a mobile app ( I do not want to include in client app due to security problems). The problem is I know that fetching config from server many times in a short period of time can throw a…
alvaroblca
  • 193
  • 1
  • 4
  • 8
11
votes
1 answer

Unable to select user property inside remote config in firebase, it is greyed out

Unable to select user property inside remote config in firebase, it is greyed out
Sankalpa
  • 111
  • 3
11
votes
2 answers

Firebase - how to create A/B test experiment for web app (not native app)

I'd like to A/B test a feature on our web app, which uses Firebase. When setting up the A/B test, I noticed that it's requiring me to select an "app" (I also have a native app), but I'm trying to target users that are using my web app. One…
Rbar
  • 3,740
  • 9
  • 39
  • 69
11
votes
2 answers

Firebase remote config alternatives

Are there some alternatives to Firebase Remote Config? I need to deliver an App for chinese market and I'm not sure that it will work
Gianluca
  • 2,379
  • 3
  • 25
  • 41
11
votes
1 answer

Firebase Remote Config - "user in random percentile" with key

I'm exploring using Firebase's "User in random percentile" condition to target different segments of a customer-base for A/B testing and have a few questions after reviewing the Firebase Remote Config Parameters and Conditions documentation: Each…
Mark
  • 7,306
  • 8
  • 45
  • 87
11
votes
3 answers

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…
JCricket
  • 1,318
  • 2
  • 17
  • 34
10
votes
3 answers

java.lang.RuntimeException: Duplicate class com.google.protobuf.AbstractMessageLite when adding firebase remote config

When I am adding com.google.firebase:firebase-config:19.1.0 to use firebase remote config having this issue. java.lang.RuntimeException: Duplicate class com.google.protobuf.AbstractMessageLite found in modules protobuf-java-2.5.0.jar…
0xAliHn
  • 18,390
  • 23
  • 91
  • 111
10
votes
3 answers

Firebase Remote Config vs Database

I have some parameters that I want to be able to control without making an update. There are 2 options: Remote config -Fetching them with the default cache of 12 hours. Database - Making a config object and fetch it while initializing the…
10
votes
5 answers

Android Firebase Remote Config initial fetch does not return value

I'm using Firebase Remote Config to fetch data when app first open for the first time. But problem is I cannot fetch data on first start of the app. onComplete() method triggers but returns no value. If I close app and run again it returns value…
Orkhan Ahmadov
  • 103
  • 2
  • 7
9
votes
1 answer

Azure - Firebase Remote Config Equivalent

Are there any features available in Azure that is equivalent to Firebase Remote Config which allows roll out of features to a mobile app without a republish? I have looked at the Azure mobile and other services offered in Azure. But, nothing seems…
Krishna
  • 1,871
  • 14
  • 26
9
votes
2 answers

Firebase Remote Config A/B testing - Error in iOS experiment console

I'm trying to get an A/B test with Remote Config up and running and I'm having some trouble with the iOS part. After setting the experiment up as described in the documentation it doesn't seem to work. For all iOS versions I've tried I'm always…
tobi_b
  • 1,218
  • 1
  • 12
  • 21
9
votes
3 answers

what is the minimum cache expire time for firebase remote config?

By default the firebase remote config cache expires after 12 hours, but i want to know what is the minimum cache Expiration time for firebase remote config.
Sarath Kumar
  • 1,922
  • 3
  • 19
  • 43
8
votes
3 answers

Swift/iOS - Firebase Remote Config fetch values never completes

Below is a class implemented to fetch remote config values from the Firebase console, however when calling fetch cloud values, the completion block never executes (i.e. If I break in the completion block, Xcode never breaks). All documentation seems…
Dom Bryan
  • 1,238
  • 2
  • 19
  • 39
8
votes
3 answers

Using Google Firebase Remote Config without Google Play Services?

Is it possible to use Firebase Remote Config without having Google Play Services installed (aosp) on the device? I did follow this setup in my android project: (via https://firebase.google.com/docs/android/setup): added classpath…
icouldin
  • 205
  • 2
  • 12
8
votes
1 answer

Remote config in Flutter app throws exception on fetch

I have a Flutter app and I am using remote config to retrieve some information, but the code throws an exception when fetching data. This is my method for setting up remote config. Future setupRemoteConfig() async { final…
dshukertjr
  • 15,244
  • 11
  • 57
  • 94
1 2
3
38 39