Update Android Gradle plugin (#988)

This commit is contained in:
Emux 2022-12-01 18:18:24 +02:00 committed by GitHub
parent 3b01288c46
commit b4014eec64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,5 @@
plugins { plugins {
id 'com.android.application' version '7.2.2' apply false id 'com.android.application' version '7.3.0' apply false
} }
allprojects { allprojects {

View File

@ -55,12 +55,14 @@ android {
release.setRoot('build-types/release') release.setRoot('build-types/release')
} }
lintOptions { abortOnError false } lint {
abortOnError false
}
packagingOptions { packagingOptions {
exclude 'META-INF/services/io.jeo.data.Driver' resources {
exclude 'META-INF/LICENSE' excludes += ['META-INF/services/io.jeo.data.Driver', 'META-INF/LICENSE', 'META-INF/NOTICE']
exclude 'META-INF/NOTICE' }
} }
/*buildTypes { /*buildTypes {

View File

@ -38,10 +38,13 @@ android {
release.setRoot('build-types/release') release.setRoot('build-types/release')
} }
lintOptions { abortOnError false } lint {
abortOnError false
}
packagingOptions { packagingOptions {
exclude 'META-INF/LICENSE' resources {
exclude 'META-INF/NOTICE' excludes += ['META-INF/LICENSE', 'META-INF/NOTICE']
}
} }
} }