Skip to content

Commit

Permalink
Explicitly disable inclusion of dependency info in built APK/bundles
Browse files Browse the repository at this point in the history
Fixes #4084
  • Loading branch information
TranceLove committed Feb 19, 2024
1 parent 21d7a7c commit 4f39602
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ android {
}
}

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

sourceSets {
test.java.srcDirs += '../testShared/src/test/java'
}
Expand Down

0 comments on commit 4f39602

Please sign in to comment.