From c4405ab6d1619df946890358756903f36875e51c Mon Sep 17 00:00:00 2001 From: Gouri Panda Date: Sat, 14 Oct 2023 01:07:16 +0530 Subject: [PATCH] Fixed language bundle issue for the playstore --- custom/build.gradle.kts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/custom/build.gradle.kts b/custom/build.gradle.kts index b26d5772d..037471284 100644 --- a/custom/build.gradle.kts +++ b/custom/build.gradle.kts @@ -35,9 +35,11 @@ android { } } } - splits { - abi { - isUniversalApk = false + bundle { + language { + // This is for testing the bundle file for the play store + //Context: #3503 + enableSplit = false } } }