I am using Upgrader version 12.5.0 in Flutter version 3.41.1.
I expect the release notes content to appear in the dialog to be the translated version in the Google Play Store, but the English version is always appearing in the Upgrader dialog. Yes, my app has a Russian version in Play Store.
This is the relevant code I am running:
_upgraderOptions = Upgrader(
languageCode: "ru", // Force the upgrader dialog to use Russian language regardless of device language
);
...
return UpgradeAlert(
upgrader: _upgraderOptions,
child: Scaffold(
How can I force Upgrader to show the correct language of the release notes?
Thank you.
I am using Upgrader version 12.5.0 in Flutter version 3.41.1.
I expect the release notes content to appear in the dialog to be the translated version in the Google Play Store, but the English version is always appearing in the Upgrader dialog. Yes, my app has a Russian version in Play Store.
This is the relevant code I am running:
How can I force Upgrader to show the correct language of the release notes?
Thank you.