From e69808a2f678b3f2a346e17f0da617fe0326758a Mon Sep 17 00:00:00 2001 From: Integral Date: Mon, 16 Jun 2025 01:51:30 +0800 Subject: [PATCH] fix: disable APK signing block to resolve F-Droid build issues (#793) Thanks for the patch from @linsui. --- android/app/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 04fb5023..0e390f28 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -92,6 +92,13 @@ android { // No applicationIdSuffix or resValue here } } + + dependenciesInfo { + // Disables dependency metadata when building APKs. + includeInApk = false + // Disables dependency metadata when building Android App Bundles. + includeInBundle = false + } } flutter {