how to localize app name shown in the launcher?
For example, "Play Store", in Chinese is "Play 商店". Thanks.
I tried to modify android\app\src\main\AndroidManifest.xml like this:
android:label="@string/app_name" And create files
values-zh/strings.xml values-en/strings.xml Example:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">App name in different language</string> </resources> But, the app name changes only when the system language changed. Is this a common problem (or known bug?) in Android?
In windows, when the app language changes, the app name will change immediately.
So, what I really want is, when the language changes in my app, the app name in the launcher will also change, ignoring the system language.
