From 60fc39a2ed0feec271025710a99f3c7f9a0a172f Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 28 Dec 2022 12:25:12 -0500 Subject: [PATCH] silence warning about useLegacyPackaging 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. --- app/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index b15eeb3e2..373e3be1b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -79,6 +79,9 @@ android { } packagingOptions { + dex { + useLegacyPackaging = false + } resources.excludes.addAll(listOf( "org/bouncycastle/pqc/**.properties", "org/bouncycastle/x509/**.properties",