From aa2fc2f707d50855d41bb6863cf432d6e7815fca Mon Sep 17 00:00:00 2001 From: andrekir Date: Sun, 8 Oct 2023 19:06:13 -0300 Subject: [PATCH] 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 --- app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index ca0c397eb..b24bd4c6d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -79,6 +79,11 @@ android { // abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" } } + bundle { + language { + enableSplit false + } + } buildFeatures { viewBinding true compose true