From 5adc75281c05012022678ddb88aadcf804d87dff Mon Sep 17 00:00:00 2001 From: Gouri Panda Date: Mon, 22 May 2023 02:12:33 +0530 Subject: [PATCH] added disable split mode for the each language --- custom/build.gradle.kts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/custom/build.gradle.kts b/custom/build.gradle.kts index 903da6913..f88975d2f 100644 --- a/custom/build.gradle.kts +++ b/custom/build.gradle.kts @@ -35,6 +35,13 @@ android { isUniversalApk = true } } + bundle { + language { + // This is disabled so that the App Bundle does NOT split the APK for each language. + // We're gonna use the same APK for all languages. + enableSplit = false + } + } } fun ProductFlavor.createDownloadTask(file: File): Task {