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

466 questions
9
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
  • 5,871
  • 6
  • 32
  • 39
9
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...…
8
votes
1 answer

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
  • 1,887
  • 1
  • 20
  • 35
8
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,771
  • 13
  • 24
8
votes
0 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,118
  • 1
  • 10
  • 20
8
votes
4 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…
8
votes
3 answers

Why FirebaseRemoteConfig.fetch doesn't call its callback?

Background I try to use Google's new Firebase services, for A/B testing. For this, we need to use both Firebase Analytics and Firebase RemoteConfig. The problem Using FireBase RemoteConfig, I wanted to get the variables from the server (which have…
android developer
  • 106,412
  • 122
  • 641
  • 1,128
8
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
  • 153
  • 3
  • 7
7
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
  • 16,415
  • 20
  • 78
  • 97
7
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
  • 8,227
  • 6
  • 33
  • 73
7
votes
1 answer

Difference between Firebase Remote config and Microsoft Codepush

I am going to develop a react-native app.I want to make some good decisions of choosing the technology stack before I begin my work. Features I am sure about: 1) For users authentication,datastore,offline syncing, Firebase does an excellent job and…
Abhinav
  • 7,550
  • 10
  • 40
  • 79
7
votes
3 answers

Remote Config A/B Test does not provide results on iOS

I have created and started an A/B Test on Firebase Remote Config 2 days ago on my iOS app with this code: [FIRApp configure]; [FIRRemoteConfig.remoteConfig fetchWithCompletionHandler:^(FIRRemoteConfigFetchStatus status, NSError * _Nullable error) { …
willy
  • 482
  • 4
  • 11
7
votes
3 answers

Mutually exclusive A/B tests with Firebase Remote Config

I wanted to perform two A/B tests on an app using Firebase A/B Testing with Remote Config. The problem is that the two tests audiences should be mutually exclusive. Forming part of both experiments might pollute the results. I've thought in setting…
willy
  • 482
  • 4
  • 11
7
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…
7
votes
0 answers

How to implement fetch() from Firebase Remote Config in onStart() method?

I'm trying to implement calling Firebase Remote Config fetch() method in onStart(). I thought it would be quite easy but after few attempts it isn't. First of all, I want to check for new config values as soon as the user opens the app and cache…
AppiDevo
  • 2,895
  • 2
  • 26
  • 45
1 2
3
30 31