Skip to content

Commit

Permalink
performance: Disables dependency metadata when building APKs.
Browse files Browse the repository at this point in the history
              dependency metadata when building Android App Bundles.
  • Loading branch information
ZTFtrue committed Apr 13, 2024
1 parent 6665979 commit 83a7997
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ android {
arg("room.schemaLocation", "$projectDir/schemas")
}
}

dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
buildTypes {
release {
isMinifyEnabled = true
Expand Down

0 comments on commit 83a7997

Please sign in to comment.