[android] Do not split languages in a bundle.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako
2025-06-04 18:13:21 -03:00
committed by Konstantin Pastbin
parent cfb97a3db6
commit 9a609f638c

View File

@@ -76,6 +76,14 @@ android {
dataBinding = true
buildConfig = true
}
// Users are complaining that the app should be re-downloaded from the Play Store after changing the language.
bundle {
language {
enableSplit = false
}
}
// All properties are read from gradle.properties file
compileSdk propCompileSdkVersion.toInteger()