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 {
jvmTarget = '11'
}
lintOptions {
packagingOptions {
resources {
excludes += ['META-INF/DEPENDENCIES']
}
}
lint {
disable 'GoogleAppIndexingWarning'
lintConfig file('../lint.xml')
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
}
if (project.hasProperty('sign')) {