From 9ed90eb6f2e7904365d8029666269e8823c894ab Mon Sep 17 00:00:00 2001 From: AntsyLich <59261191+AntsyLich@users.noreply.github.com> Date: Sat, 12 Oct 2024 05:11:16 +0600 Subject: [PATCH] Update resources exclusion rules Co-authored-by: p (cherry picked from commit 481cfedf08576cecfbb35616837bd8f627d8f959) --- app/build.gradle.kts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e4c93a848..1f277df02 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -107,13 +107,16 @@ android { packaging { resources.excludes.addAll( listOf( + "kotlin-tooling-metadata.json", "META-INF/DEPENDENCIES", "LICENSE.txt", "META-INF/LICENSE", - "META-INF/LICENSE.txt", + "META-INF/**/LICENSE.txt", + "META-INF/*.properties", + "META-INF/**/*.properties", "META-INF/README.md", "META-INF/NOTICE", - "META-INF/*.kotlin_module", + "META-INF/*.version", ), ) }