Skip to content

Commit

Permalink
Fix: Exclude dependencies info from generated apks and bundle (#1189)
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbeesetti authored Dec 26, 2024
1 parent ad3bfb7 commit aa87c71
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ android {
excludes.add("/META-INF/{AL2.0,LGPL2.1}")
}
}

dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
}

dependencies {
Expand Down

0 comments on commit aa87c71

Please sign in to comment.