fix: disable language splits in Bundle builds

some users were unable to change in-app language when installing the app from the Play Store due to "on-demand delivery" conflicts. this change includes string resources for all languages instead of a single language split based on users language preferences during install.

fixes #689
This commit is contained in:
andrekir
2023-10-08 19:06:13 -03:00
parent 4e7ea67da0
commit aa2fc2f707

View File

@@ -79,6 +79,11 @@ android {
// abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}
}
bundle {
language {
enableSplit false
}
}
buildFeatures {
viewBinding true
compose true