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
0
votes
0 answers

How to control Firebase remote config correctly? values doesn't change

I want to make Startapp Ads display just when I want it to display. so I decide to depend on firebase service that called (remote config). but it didn't give me the result I want. here's my code: @Override protected void onCreate(Bundle…
Ph Anas
  • 1
  • 2
0
votes
3 answers

Conditions in Firebase Remote Config Defaults

I'm trying to set up Firebase Remote Config. One of important parts in my project is correct localization. So I have conditions for different languages set up in console. But now I'd like to make defaults xml. Example on github is to simple. There…
oleg.semen
  • 2,901
  • 2
  • 28
  • 56
0
votes
1 answer

Minimal set of permissions to give for a read-only access to Firebase Remote Config?

We have set up the Remote Config for our app at Google Firebase, which is accessed via a Service Account that is meant to have a Role with minimal requirements. Would be perfect to have permissions for read-only access to the Remote Config…
jayarjo
  • 16,124
  • 24
  • 94
  • 138
0
votes
1 answer

Don't get Firebase A/B draft experiment remote config value on my test devices

I'd like to create a Firebase A/B test experiment and tweak the setup before starting it by using the option to add a test device via its Firebase Instance ID, however, I never seem to get the Remote Config param for the experiment. The fetch is…
0
votes
1 answer

Firebase remote Config server value are same as default?

We are using remote config in our application, and since yesterday our remote value are not reflecting on apps it was working before. Due to this some of over feature breaks and produce crash. FirebaseRemoteConfig mFirebaseRemoteConfig; …
Asheesh
  • 565
  • 6
  • 21
0
votes
0 answers

Firebase Remote config fetch cache discrepancy 16.3.0 vs 16.0.0

I am experiencing an weird issue with the latest Android SDK com.google.firebase:firebase-config:16.3.0 In my app's splash screen I use the fetch method like this config.fetch(EXPIRY_CACHE).addOnCompleteListener { task -> if…
gemini
  • 349
  • 4
  • 11
0
votes
1 answer

Why Firebase Remote Config doesn't update values?

I'm using Firebase Remote Config, I have some troubles to update values. My values are updated only if I close and relaunch the app. But never if my app enters in foreground. The developer is activated, with no cache delay. class AppDelegate:…
cmii
  • 3,556
  • 8
  • 38
  • 69
0
votes
1 answer

Firebase RemoteConfig Conditions General validation error

When trying to publish a new condition into Firebase i get Error stating A general validation error occured and nothing else. The condition is defined as App=iOS and AudienceGroup=X_Audience. I have tried changing rule to include other audiences and…
skryshtafovych
  • 572
  • 4
  • 16
0
votes
2 answers

How to handle a Remote Config instance inside a singleton

What I'm trying to do is to make a singleton of a Remote Config fetch in order to load it at first time in my SplashScreen. While my splashscreen is loading I fetch the data with my remote config singleton once, and then, I just access the value…
Gastón Saillén
  • 12,319
  • 5
  • 67
  • 77
0
votes
2 answers

Remote config menu item missing

Following this guide: https://firebase.google.com/docs/remote-config/android/start/ Where the instructions state "Select Remote Config from the menu to view the Remote Config dashboard." I don't have that item in the dashboard: I'm probably missing…
ekimai
  • 83
  • 11
0
votes
0 answers

Firebase A/B testing with Remote Config: when adding a new parameter, need to exclude old app versions?

When A/B testing with Remote Config, if a new iOS version uses a new remote config parameter, will older versions automatically be excluded from the results of the experiment because they do not use that parameter in code (they do not query it, they…
Kqtr
  • 5,824
  • 3
  • 25
  • 32
0
votes
1 answer

Is it possible to fetch specific Firebase Remote Config settings in reaction to user behavior?

Is it possible to fetch a specific set of Firebase Remote Config parameters based on user input or behavior? Suppose we ask a user to input their favorite color and then we want to provide a Remote Config tailored to users who put in that color, is…
adell
  • 51
  • 2
  • 5
0
votes
1 answer

Firebase RemoteConfig fetch calling each time not after cache expired

Maybe I am missing something, but shouldn't the fetch() be called only if the cached values are older than the cached value? Having this code called from activity's onCreate firebaseRC = FirebaseRemoteConfig.getInstance() firebaseRC.fetch(3600L).…
Alin
  • 14,809
  • 40
  • 129
  • 218
0
votes
1 answer

Adding pod 'Firebase/AppIndexing' and pod 'FirebaseInAppMessaging' together

Unable to have both together due to varying version dependency `[!] CocoaPods could not find compatible versions for pod "FirebaseAnalytics": In snapshot (Podfile.lock): FirebaseAnalytics (= 3.9.0, ~> 3.7, ~> 3.8, ~> 3.9) In Podfile: …
0
votes
1 answer

Firebase named instance for Android/JNI application

I want to create a standalone instance of Firebase for my JNI-library purposes. E.g. the library should report its own analytics and receive remote configs. And all of that should be done separately from an app, which can have another Firebase…