Skip to content

Commit

Permalink
Disable dependency metadata when building APK/AAB.
Browse files Browse the repository at this point in the history
  • Loading branch information
KotlinGeekDev committed Dec 27, 2024
1 parent 62c5818 commit 9c12c6c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ android {
// }
}
}
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}

testOptions {
unitTests {
Expand Down

0 comments on commit 9c12c6c

Please sign in to comment.