Please enable JavaScript.
Coggle requires JavaScript to display documents.
FIREBASE REMOTE CONFIG - Coggle Diagram
FIREBASE REMOTE CONFIG
-
CONCEPT
Firebase Remote Config is a cloud service that enables you to modify the behavior and appearance of your mobile app without requiring users to download an update
Firebase Remote Config allows for dynamic updates to your app, allowing users to see new features or changes without needing to download a new version of the app.
-
USE CASES
CONFIGURATION
SEASONAL PROMOTION
you can utilize a Remote Config parameter as a feature flag to alter your app’s layout or color scheme to align with a seasonal promotion, eliminating the need for a new app release.
you can use it to change colors, texts, icons in special days, and to enable/disable features. I use it to enable/disable “watch an ad to unlock fonts” in my design app and it’s a good strategy since AdMob can stop by some policy issues sometimes and you need to disable it immediately
-
VERSIONING
VERSION UPDATES
We can use remote config to check if there are any minor or major updates that the user needs to download.
-
Maintain different versions of configurations, allowing you to roll back to a previous version in case of issues or emergencies.
A/B TESTING
it’s easy to set configs for only a subset of your users, you can try new features or different banner ad placements, etc.
GRADUAL ROLLOUT
Instead of publishing features for all users at once you can select a percentage of users (for example 10%) and try your awesome features
-
When you are satisfied with the stability of the feature in 10% of the user population, you can increase it to 30%, to 50%, and eventually to 100% once you have full confidence in the feature.
-
-
-
-
-
-