gradle: avoid inclusion of apk signing blobs

See https://android.izzysoft.de/articles/named/iod-scan-apkchecks?lang=en#blobs
This commit is contained in:
2025-11-21 23:08:46 +01:00
parent 7d67a2e33b
commit 508c14ff6e

View File

@@ -31,6 +31,12 @@ android {
sourceCompatibility = JavaVersion.VERSION_11 sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11
} }
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
kotlinOptions { kotlinOptions {
jvmTarget = "11" jvmTarget = "11"
} }