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>2020-09-17 20:43:59 +0300
committerRicki Hirner <hirner@bitfire.at>2020-09-17 20:43:59 +0300
commitf8941a5d08f01c7f2b24094cbae7016bced61e4f (patch)
treead886ba1ded4edecc5455c4e9d9ddec608328686
parent3b3c2070f39c4e7372c6f763a6aa402522e3ad93 (diff)
Update build tools and dependencies
-rw-r--r--build.gradle21
1 files changed, 10 insertions, 11 deletions
diff --git a/build.gradle b/build.gradle
index e889257..65bb0aa 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,7 +1,7 @@
buildscript {
ext.versions = [
- kotlin: '1.3.72',
+ kotlin: '1.4.10',
dokka: '0.10.1',
conscrypt: '2.4.0'
]
@@ -12,7 +12,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:4.0.0'
+ classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
@@ -29,7 +29,7 @@ apply plugin: 'org.jetbrains.dokka'
android {
compileSdkVersion 29
- buildToolsVersion '29.0.2'
+ buildToolsVersion '30.0.2'
defaultConfig {
minSdkVersion 14
@@ -64,20 +64,19 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
- implementation 'androidx.appcompat:appcompat:1.1.0'
+ implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-livedata:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
- implementation 'com.google.android.material:material:1.2.0-beta01'
+ implementation 'com.google.android.material:material:1.2.1'
implementation "org.conscrypt:conscrypt-android:${versions.conscrypt}"
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test:rules:1.2.0'
- androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.7.2'
- androidTestImplementation 'commons-io:commons-io:2.6'
- //noinspection GradleDependency - commons-lang 3.10+ needs Java 8/Android 7
- androidTestImplementation 'org.apache.commons:commons-lang3:3.9'
+ androidTestImplementation 'androidx.test:runner:1.3.0'
+ androidTestImplementation 'androidx.test:rules:1.3.0'
+ androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.0'
+ androidTestImplementation 'commons-io:commons-io:2.8.0'
+ androidTestImplementation 'org.apache.commons:commons-lang3:3.11'
testImplementation 'junit:junit:4.13'
}