Replace deprecated gradle functions

This commit is contained in:
Niko Diamadis
2023-06-09 09:37:31 +02:00
parent 7f5f744418
commit 1cb3e76b48

View File

@@ -39,13 +39,15 @@ android {
kotlinOptions { kotlinOptions {
jvmTarget = '11' jvmTarget = '11'
} }
lintOptions { packagingOptions {
resources {
excludes += ['META-INF/DEPENDENCIES']
}
}
lint {
disable 'GoogleAppIndexingWarning' disable 'GoogleAppIndexingWarning'
lintConfig file('../lint.xml') lintConfig file('../lint.xml')
} }
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
} }
if (project.hasProperty('sign')) { if (project.hasProperty('sign')) {