From 265f79c70c8ddb1569c5a30afb1305f89f35fcb5 Mon Sep 17 00:00:00 2001 From: Zac McKenney Date: Thu, 19 Oct 2023 15:32:45 -0700 Subject: [PATCH] Bug 1860186 - Dont split languages in AAB (cherry picked from commit cbbfdd7641b4e63399f853f75c0fdb93dd409340) --- app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index ec8933dad..ecf270db0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -214,6 +214,14 @@ android { targetCompatibility JavaVersion.VERSION_17 } + bundle { + language { + // Because we have runtime language selection we will keep all strings and languages + // in the base APKs. + enableSplit = false + } + } + lint { lintConfig file("lint.xml") baseline file("lint-baseline.xml")