Skip to main content

Firebase Remote Config – Add and Update Value

Firebase Remote Config is a cloud service that lets you change the behavior and appearance of your app without requiring users to download an app update.

When using Remote Config, you create in-app default values that control the behavior and appearance of your app. Then, you can later use the Firebase console or the Remote Config REST API to override in-app default values for all app users or for segments of your user base. Your app controls when updates are applied, and it can frequently check for updates and apply them with a negligible impact on performance.

SOURCE : https://firebase.google.com/docs/remote-config/

  1. Go to https://console.firebase.google.com/ Add Project or Select Existing Project


  2. Open left menu Remote Config, then click button Add your first parameter.
  3. In example you want to add this string parameter
    KEY_NAME                   | VALUE ———————————————————- banner_ad_unit_id              “ca-app-pub-96679765 . . .”
    interstitial_ad_unit_id      “ca-app-pub-32864000 . . .”
  4. After all parameter added you must click button publish to make that parameter ready to consume by your client.

DONE

Comments