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
|
||||
}
|
||||
|
||||
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 {
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.backend.webdav" />
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
[versions]
|
||||
java = "1.8"
|
||||
androidGradlePlugin = "7.3.1"
|
||||
androidGradlePlugin = "7.4.0"
|
||||
ktlint = "0.44.0"
|
||||
|
||||
kotlin = "1.7.22"
|
||||
|
|
Loading…
Reference in a new issue