From 9a609f638cbf51d83d41ce8b5f42d345254e8c25 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Wed, 4 Jun 2025 18:13:21 -0300 Subject: [PATCH] [android] Do not split languages in a bundle. Signed-off-by: Viktor Govako --- android/app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 548788f2f..54714ad4c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -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()