Search code examples
androidfirebase-remote-config

How to know Which Firebase Remote Config parameter was published


Lets say I have 50 Remote Config parameters in the Firebase console and I change one. Then I press the publish changes button right.

On Android client side when doing firebaseRemoteConfig.activateFetched();is there a way to see what exactly was changed or must I iterate over all 50 parameters and test them?


Solution

  • There's no "diff" function or anything with remote config where you can see what's changed. If you're actually curious as to what's changed since the last time you retrieved data, you'd need to iterate over all of your parameters.