diff --git a/app/build.gradle b/app/build.gradle index a52e8b2e..92b4f146 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -51,12 +51,12 @@ android { } } - packagingOptions { - exclude 'META-INF/DEPENDENCIES' - exclude 'META-INF/LICENSE.txt' - exclude 'META-INF/NOTICE.txt' + resources { + excludes += ['META-INF/DEPENDENCIES', 'META-INF/LICENSE.txt', 'META-INF/NOTICE.txt'] + } } + android { lintOptions { abortOnError false diff --git a/build.gradle b/build.gradle index f23961bd..ab641976 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.7.1' + classpath 'com.android.tools.build:gradle:8.7.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" }