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
pull/759/head
andrekir 2023-10-08 19:06:13 -03:00
rodzic 4e7ea67da0
commit aa2fc2f707
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

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