Remote Config

Firebase remote config

Video Explanation

Text Explanation

Remote config is used to update data and some important configurations in the application. This configuration can change from firebase console .

This step is optional, you can change App Config directly to file on android AppConfig.java, but after app publish you can change app configration from firebase remote Config.

Remote Config used for this app, you can configure ads notification and general data from this file. Some values are not explained and can be understood easily according to the variable name value can change remotely (optional), please read documentation to follow instruction.

How to change Config?

1. Go to your firebase console https://console.firebase.google.com/, select your project 2. Go to menu Remote Config

3. Add Key Value , key is the lowercase name variable at AppConfig.java this is remote config form

App Version

In case you want all your user update their youtubers app to version 2, you can use this feature to showing update popup of force your user to update. here the step 1. Make sure your app version 2 live on google play 2. Update and publish app_version from firebase console with value 2 3. App with version less than 2 will got dialog like this on starting

Last updated