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-09-27 11:42:43 +0300
committerRicki Hirner <hirner@bitfire.at>2022-09-27 12:01:12 +0300
commiteb47c00cb05fe5d27e8640444cc60aa7c271b47a (patch)
treea5cfa4587bee6ad961d4af0ef54c52614d7cb77f
parent7814052eaf3072ad2c8ed29606cc9f18c3b7921d (diff)
Update dependencies, compile tools, gradle plugin
- raise minimum SDK level to 21 (to avoid >64k methods problem)
-rw-r--r--build.gradle20
1 files changed, 10 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index c53d3f3..a5ae77a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
ext.versions = [
- kotlin: '1.6.21',
+ kotlin: '1.7.10',
dokka: '1.5.0',
conscrypt: '2.5.2'
]
@@ -11,7 +11,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.2.0'
+ classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
@@ -28,11 +28,11 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'org.jetbrains.dokka'
android {
- compileSdkVersion 32
- buildToolsVersion '32.0.0'
+ compileSdkVersion 33
+ buildToolsVersion '33.0.0'
defaultConfig {
- minSdkVersion 14 // Android 4.0
+ minSdkVersion 21 // Android 5
targetSdkVersion 32 // Android 12v2
}
@@ -64,17 +64,17 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
- implementation 'androidx.appcompat:appcompat:1.4.1'
+ implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
- implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
- implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
- implementation 'com.google.android.material:material:1.6.0'
+ implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
+ implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
+ implementation 'com.google.android.material:material:1.6.1'
implementation "org.conscrypt:conscrypt-android:${versions.conscrypt}"
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test:rules:1.4.0'
- androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.3'
+ androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
testImplementation 'junit:junit:4.13.2'
}