From 32d59bd3fbd77dbf0b3971c51ee9a0610dc368aa Mon Sep 17 00:00:00 2001 From: CrazyMarvin Date: Sun, 1 Sep 2024 23:18:21 +0200 Subject: [PATCH] Fix DependencyInfoBlock https://gitlab.com/fdroid/fdroidserver/-/issues/1056#note_1218193185 --- android/app/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index b2c40f1..fa8d4fb 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -57,6 +57,15 @@ android { excludes += "/META-INF/{AL2.0,LGPL2.1}" } } + dependenciesInfo { + // Disables dependency metadata when building APKs + includeInApk = false + // Disables dependency metadata when building Android App Bundles + includeInBundle = false + } +} + + } dependencies {