Reputation: 3535
I recently added Firebase remote config to my project in order to manage some app settings remotely.
Due the nature of Firebase, the configs can only be updated on client side every 12 hours. And as I added the variables to the remote config slowly, I accidentaly created the following scenario:
Is there any way to force Firebase to update the remote config fields on update?
Upvotes: 0
Views: 4466
Reputation: 317828
If you want to notify app client of changes in Remote Config, the documentation describes a solution that you can implement. It involves:
Upvotes: 1