Refresh Localization Upon Version Update from Remote Assets
Context: We currently manage localization files using Firebase. Our process includes version control for these localization files, allowing us to check and fetch updates only when the cached local version differs from the remote version.
Desired Solution: We need a solution that can refresh the localization that we just fetch from the firebase once we got the version update
Is there any solution to handle this use case, or is not possible to request new feature?
I have a similar use case. Instead of loading localization from Firebase, I’m loading it from a server. However, even when I call context.setLocale(locale), the translation doesn’t refresh. It internally loads the new translation, but the view doesn’t update. Have you found a solution to this?