Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2022-01-26 14:11:19 +0300
committerRicki Hirner <hirner@bitfire.at>2022-01-26 14:11:19 +0300
commit502f2925037f3cf8c62e659fbeb52ef460c9b1af (patch)
tree414a03611dad6afdf09e7cb054ddd91171bf65a1
parent816e95968c0799c93ffa14657aebe6b966d0591d (diff)
Update gradle plugin
-rw-r--r--build.gradle15
1 files changed, 7 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index 9ea56e2..12d7a52 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,7 +13,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.0.4'
+ classpath 'com.android.tools.build:gradle:7.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
@@ -48,14 +48,13 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
- lintOptions {
- disable 'AllowBackup'
- disable 'InvalidPackage'
- }
packagingOptions {
- exclude 'LICENSE'
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE.txt'
+ resources {
+ excludes += ['LICENSE', 'META-INF/LICENSE.txt', 'META-INF/NOTICE.txt']
+ }
+ }
+ lint {
+ disable 'AllowBackup', 'InvalidPackage'
}
defaultConfig {