Skip to content

Commit

Permalink
silence warning about useLegacyPackaging
Browse files Browse the repository at this point in the history
We switched to implementing this via aaptOptions because this option is
buggy and doesn't work with app bundles. However, not setting this will
result in a warning while building.
  • Loading branch information
thestinger committed Dec 28, 2022
1 parent 1b4c2af commit 60fc39a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ android {
}

packagingOptions {
dex {
useLegacyPackaging = false
}
resources.excludes.addAll(listOf(
"org/bouncycastle/pqc/**.properties",
"org/bouncycastle/x509/**.properties",
Expand Down

0 comments on commit 60fc39a

Please sign in to comment.