From 0afe81df72c21e82117826ab0807032897a30b30 Mon Sep 17 00:00:00 2001 From: David Berdik Date: Sun, 5 Jan 2025 23:02:44 -0500 Subject: [PATCH] Don't include dependency info blocks when building APKs and Android App Bundles. --- app/build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 807570b..ad379fb 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -26,6 +26,11 @@ android { kotlinCompilerExtensionVersion = "1.5.3" } + dependenciesInfo { + includeInApk = false + includeInBundle = false + } + buildTypes { release { isMinifyEnabled = true