From a29222090838ad86d187da64b9aac4478df3a875 Mon Sep 17 00:00:00 2001 From: Michael Geers Date: Mon, 15 Jun 2026 10:41:30 +0200 Subject: [PATCH] fix: include dependency metadata in F-Droid APK builds Set includeInApk on the dependenciesInfo block so the Android APK keeps its dependency metadata. --- scripts/fdroid/src/disableDependencyMetadata.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fdroid/src/disableDependencyMetadata.ts b/scripts/fdroid/src/disableDependencyMetadata.ts index 9db15a1..debedf9 100644 --- a/scripts/fdroid/src/disableDependencyMetadata.ts +++ b/scripts/fdroid/src/disableDependencyMetadata.ts @@ -11,7 +11,7 @@ const withNDKBuildId: ConfigPlugin = (config) => { `android { dependenciesInfo { // Disables dependency metadata when building APKs. - includeInApk = false + includeInApk = true // Disables dependency metadata when building Android App Bundles. includeInBundle = false }