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
8
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
  • 8,028
  • 12
  • 48
  • 89
8
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
  • 490
  • 4
  • 11
8
votes
3 answers

Can I get JSONObject from Default value of Firebase Remote Config

I need to fetch JSONObject from default value of Remote config in Firebase. By FirebaseRemoteConfig.getString(), it gets converted to the String, but not in the JSONObject, saying org.json.JSONException: Unterminated object at character xx I am…
Vipul K. Patil
  • 128
  • 1
  • 10
8
votes
2 answers

Can Firebase RemoteConfig be accessed from cloud functions

I'm using Firebase as a simple game-server and have some settings that are relevant for both client and backend and would like to keep them in RemoteConfig for consistency, but not sure if I can access it from my cloud functions in a simple way (I…
N.J.
  • 679
  • 7
  • 13
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
  • 114,585
  • 152
  • 739
  • 1,270
7
votes
0 answers

Fetch firebase remote config values on first login

I'm trying to fetch remote config values on first login (and not only after minimumFetchIntervalMillis expires), this is what i do (pseudo): yield firebaseConfig.setConfigSettings(15 mins) yield firebaseConfig.setDefaults() yield…
7
votes
5 answers

FirebaseRemoteConfig fetchAndActivate not updating new value

I have already set the minimum interval to be 0 when in Debug mode. Currently what I do to fetch new data is by clearing the app storage first before launching the app. Here is my code: private fun initRemoteConfig() { remoteConfig =…
Mike
  • 697
  • 1
  • 9
  • 21
7
votes
4 answers

Framework not found Protobuf

I am facing an issue wherein I needed to use FirebaseRemoteConfig for my iOS app. I included the following pod: pod 'Firebase/RemoteConfig' Now when I am running the command on terminal: pod install It shows me the error: Framework not found…
Reckoner
  • 1,041
  • 2
  • 13
  • 29
7
votes
1 answer

App Version in Firebase Remote Config Condition

I'm using Firebase for my iOS app. For users on old versions of my app I want to be able to force them to update their app from App Store to be able to continue using the app. For this I'm checking a remote config value in the app if it's true the…
Martin
  • 7,190
  • 9
  • 40
  • 48
7
votes
1 answer

Firebase A/B Test - same userId on different devices

Does Firebase A/B testing take into consideration user id which is set by FirebaseAnalytics.setUserId? Here is my use case: John Doe opens the app He signs in FirebaseAnalytics.setUserId is called with johnDoeUserId Remote config values are fetched…
rafakob
  • 3,946
  • 3
  • 26
  • 36
7
votes
1 answer

What is causing TypeError: Expected `input` to be a `Function` or `Object` issue with gtoken and pify?

I'm trying to integrate Firebase Remote Config into my Cordova application to force users to update if they have a minimum version, but importing the package causes an error. It can't be in the code, because the error is thrown before the code runs…
7
votes
0 answers

Firebase remote config in unity get only default values and not real ones

I'm trying to implement Firebase remote config into unity project. This is the only script that's running: using System.Collections; using System.Collections.Generic; using UnityEngine; using Firebase; using Firebase.RemoteConfig; using…
Newton
  • 71
  • 1
  • 3
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
  • 490
  • 4
  • 11
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
  • 3,195
  • 3
  • 33
  • 51
7
votes
2 answers

Firebase Remote Config : NullPointerException on Map.keySet()

I am getting the following crash for a lot of users : Fatal Exception: java.lang.NullPointerException: Attempt to invoke interface method 'java.util.Set java.util.Map.keySet()' on a null object reference at…
Ashutosh Chamoli
  • 987
  • 1
  • 11
  • 27