In iOS , we can modify
build.settings file , add iphone specific InfoPlist.strings to set CFBundleLocalizations for different application name under different language, e.g.
iphone = {
plist = {
CFBundleLocalizations={
“en”,
“zh-Hans”,
“zh-Hant”,
},
},
} Is there any equivalent setting in Android ?
I want to make my Android app displays its app name based on the Android system language. What should I do?