- Add the following configuration in the
build.gradlefile of your app module to ensure that other languages are ignored when packaging the APK.
android {
defaultConfig {
...
resConfigs("in-rID") // For example, only Indonesian is supported
}
}
- Since the default language of the SDK is English, meaning the values directory contains English resources, you need to copy the language resources from the
values-in-rIDfolder to the values directory to replace the English resources.
Comments
0 comments