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 since this
useLegacyPackaging approach doesn't work for app bundles. However, this
results in a warning.
  • Loading branch information
thestinger committed Dec 28, 2022
1 parent 1b4c2af commit 3d64da7
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 3d64da7

Please sign in to comment.