- I had this setting in gradle
- I had uploaded
.aab
playstore. - The app is multilingual namely
English
andBahasa
android {
// When building Android App Bundles, the splits block is ignored.
splits {...}
// Instead, use the bundle block to control which types of configuration APKs
// you want your app bundle to support.
bundle {
language {
// Specifies that the app bundle should not support
// configuration APKs for language resources. These
// resources are instead packaged with each base and
// dynamic feature APK.
enableSplit = true
}
density {
// This property is set to true by default.
enableSplit = true
}
abi {
// This property is set to true by default.
enableSplit = true
}
}
}
Problem: Once I downloaded app from play-store i can just see English
strings in app and Bahasa
language is not coming when I switch the language
Question : Does specifying language-split = true
causing this