From 481cfedf08576cecfbb35616837bd8f627d8f959 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 --- 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 2e252b07e..6cb96d329 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -108,13 +108,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", ), ) }