Skip to content

Commit

Permalink
fix: disable dependency metadata in APKs and App Bundles (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Blank authored Oct 11, 2024
1 parent 781e266 commit 630219d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ android {
main.java.srcDirs += 'src/main/kotlin'
}

// see: https://gitlab.com/IzzyOnDroid/repo/-/issues/623#note_2149548690
// https://android.izzysoft.de/articles/named/iod-scan-apkchecks#blobs
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "dr.blank.vaani"
Expand Down

0 comments on commit 630219d

Please sign in to comment.