Skip to content

Commit

Permalink
Use packaging instead of packagingOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
floschu committed Oct 19, 2024
1 parent 5f55cff commit 3398a3c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -130,4 +130,4 @@ dependencies {
implementation(libs.room.runtime)
implementation(libs.room.ktx)
ksp(libs.room.compiler)
}
}

0 comments on commit 3398a3c

Please sign in to comment.