diff --git a/custom/build.gradle.kts b/custom/build.gradle.kts index 5d3ba1422..986c81061 100644 --- a/custom/build.gradle.kts +++ b/custom/build.gradle.kts @@ -30,9 +30,12 @@ android { } } } - splits { - abi { - 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 } } }