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 {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.application' version '7.3.0' apply false
}
allprojects {

View File

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

View File

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