Update Android Gradle Plugin to version 7.4.0

This commit is contained in:
cketti 2023-01-16 16:24:13 +01:00
parent 74094a2d66
commit 6a5263aa41
3 changed files with 23 additions and 17 deletions

View file

@ -103,24 +103,32 @@ android {
}
}
lintOptions {
lint {
checkDependencies true
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/README'
exclude 'META-INF/README.md'
exclude 'META-INF/CHANGES'
exclude 'LICENSE.txt'
exclude 'META-INF/*.kotlin_module'
exclude 'META-INF/*.version'
exclude 'kotlin/**'
exclude 'DebugProbesKt.bin'
jniLibs {
excludes += ['kotlin/**']
}
resources {
excludes += [
'META-INF/DEPENDENCIES',
'META-INF/LICENSE',
'META-INF/LICENSE.txt',
'META-INF/NOTICE',
'META-INF/NOTICE.txt',
'META-INF/README',
'META-INF/README.md',
'META-INF/CHANGES',
'LICENSE.txt',
'META-INF/*.kotlin_module',
'META-INF/*.version',
'kotlin/**',
'DebugProbesKt.bin'
]
}
}
dependenciesInfo {

View file

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.fsck.k9.backend.webdav" />

View file

@ -3,7 +3,7 @@
[versions]
java = "1.8"
androidGradlePlugin = "7.3.1"
androidGradlePlugin = "7.4.0"
ktlint = "0.44.0"
kotlin = "1.7.22"