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

github.com/bitfireAT/cert4android.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:04:43 +0300
committerRicki Hirner <hirner@bitfire.at>2022-01-26 14:04:43 +0300
commitd6c73952bc0a8de125c1128e67d476972bfd8882 (patch)
tree761188fac3e491fc8f2c798f788c06865bb2bfad
parentfb38e84944a034850243f317a5dc088532e25b8b (diff)
Update gradle plugin, Kotlin
-rw-r--r--build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index 526ea23..007d6eb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
ext.versions = [
- kotlin: '1.6.0',
+ kotlin: '1.6.10',
dokka: '1.5.0',
conscrypt: '2.5.2'
]
@@ -11,7 +11,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}"
}
@@ -42,11 +42,11 @@ android {
}
buildFeatures.dataBinding = true
-
- lintOptions {
- disable 'MissingTranslation', 'ExtraTranslation' // translations from Transifex are not always up to date
+ lint {
+ disable 'MissingTranslation', 'ExtraTranslation'
}
+
defaultConfig {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}