From 3398a3ca3d597d65c37ee588fef0f6cdf52ca50c Mon Sep 17 00:00:00 2001 From: Florian Schuster Date: Sat, 19 Oct 2024 11:02:11 +0200 Subject: [PATCH] Use packaging instead of packagingOptions --- app/build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index def39aa..5c34522 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -47,15 +47,15 @@ android { storePassword = localProperties.getProperty("signingStorePassword") ?: System.getenv("SIGNING_STORE_PASSWORD") - ?: null + ?: null keyAlias = localProperties.getProperty("signingKeyAlias") ?: System.getenv("SIGNING_KEY_ALIAS") - ?: null + ?: null keyPassword = localProperties.getProperty("signingKeyPassword") ?: System.getenv("SIGNING_KEY_PASSWORD") - ?: null + ?: null } } @@ -91,7 +91,7 @@ android { buildConfig = true } - packagingOptions { + packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" excludes += "META-INF/versions/9/previous-compilation-data.bin" @@ -130,4 +130,4 @@ dependencies { implementation(libs.room.runtime) implementation(libs.room.ktx) ksp(libs.room.compiler) -} \ No newline at end of file +}