Update Android Gradle Plugin to version 7.4.0
This commit is contained in:
parent
74094a2d66
commit
6a5263aa41
3 changed files with 23 additions and 17 deletions
|
@ -103,24 +103,32 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lintOptions {
|
lint {
|
||||||
checkDependencies true
|
checkDependencies true
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
exclude 'META-INF/DEPENDENCIES'
|
jniLibs {
|
||||||
exclude 'META-INF/LICENSE'
|
excludes += ['kotlin/**']
|
||||||
exclude 'META-INF/LICENSE.txt'
|
}
|
||||||
exclude 'META-INF/NOTICE'
|
|
||||||
exclude 'META-INF/NOTICE.txt'
|
resources {
|
||||||
exclude 'META-INF/README'
|
excludes += [
|
||||||
exclude 'META-INF/README.md'
|
'META-INF/DEPENDENCIES',
|
||||||
exclude 'META-INF/CHANGES'
|
'META-INF/LICENSE',
|
||||||
exclude 'LICENSE.txt'
|
'META-INF/LICENSE.txt',
|
||||||
exclude 'META-INF/*.kotlin_module'
|
'META-INF/NOTICE',
|
||||||
exclude 'META-INF/*.version'
|
'META-INF/NOTICE.txt',
|
||||||
exclude 'kotlin/**'
|
'META-INF/README',
|
||||||
exclude 'DebugProbesKt.bin'
|
'META-INF/README.md',
|
||||||
|
'META-INF/CHANGES',
|
||||||
|
'LICENSE.txt',
|
||||||
|
'META-INF/*.kotlin_module',
|
||||||
|
'META-INF/*.version',
|
||||||
|
'kotlin/**',
|
||||||
|
'DebugProbesKt.bin'
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependenciesInfo {
|
dependenciesInfo {
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest package="com.fsck.k9.backend.webdav" />
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
java = "1.8"
|
java = "1.8"
|
||||||
androidGradlePlugin = "7.3.1"
|
androidGradlePlugin = "7.4.0"
|
||||||
ktlint = "0.44.0"
|
ktlint = "0.44.0"
|
||||||
|
|
||||||
kotlin = "1.7.22"
|
kotlin = "1.7.22"
|
||||||
|
|
Loading…
Reference in a new issue