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>2021-04-12 23:55:44 +0300
committerRicki Hirner <hirner@bitfire.at>2021-04-12 23:55:44 +0300
commit347a4dee29397d418def1673c77e1a2685c9dad8 (patch)
tree106338387337997f1322208703aa93ee89e99506
parent6fd0360142ae09953e3a63d760248d3c37b235e9 (diff)
Update dependencies
-rw-r--r--build.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle
index 9583667..5168485 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,9 +1,9 @@
buildscript {
ext.versions = [
- kotlin: '1.4.21',
+ kotlin: '1.4.31',
dokka: '0.10.1',
- conscrypt: '2.5.1'
+ conscrypt: '2.5.2'
]
repositories {
@@ -12,7 +12,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:4.1.1'
+ classpath 'com.android.tools.build:gradle:4.1.3'
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 30
- buildToolsVersion '30.0.2'
+ buildToolsVersion '30.0.3'
defaultConfig {
minSdkVersion 14 // Android 4.0
@@ -66,14 +66,14 @@ dependencies {
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-ktx:2.2.0'
- implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
- implementation 'com.google.android.material:material:1.2.1'
+ implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
+ implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
+ implementation 'com.google.android.material:material:1.3.0'
implementation "org.conscrypt:conscrypt-android:${versions.conscrypt}"
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
- androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.0'
+ androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.1'
- testImplementation 'junit:junit:4.13.1'
+ testImplementation 'junit:junit:4.13.2'
}