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>2019-09-19 00:33:38 +0300
committerRicki Hirner <hirner@bitfire.at>2019-09-19 00:38:13 +0300
commit50aa218a1cde086fdd024d25c34f17d9f352d3c2 (patch)
treeea4933ec7838a99e597b73d80810f5bd641afe79 /build.gradle
parent8ad6a3db2fcd1e1ee6cf8e116fc5f69d904ad108 (diff)
Update libraries; target SDK level 29
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle20
1 files changed, 10 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index 396a8ed..ac0c8e6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,9 +1,9 @@
buildscript {
ext.versions = [
- kotlin: '1.3.41',
+ kotlin: '1.3.50',
dokka: '0.9.18',
- conscrypt: '2.1.0'
+ conscrypt: '2.2.1'
]
repositories {
@@ -12,7 +12,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.4.2'
+ classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${versions.dokka}"
}
@@ -28,12 +28,12 @@ apply plugin: 'kotlin-android'
apply plugin: 'org.jetbrains.dokka-android'
android {
- compileSdkVersion 28
+ compileSdkVersion 29
buildToolsVersion '29.0.1'
defaultConfig {
minSdkVersion 14
- targetSdkVersion 28
+ targetSdkVersion 29
}
compileOptions {
@@ -56,16 +56,16 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${versions.kotlin}"
- implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
+ implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
- implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
- implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
- implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.0.0'
+ implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
+ implementation 'androidx.lifecycle:lifecycle-livedata:2.1.0'
+ implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0'
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:3.12.3'
+ androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.12.5'
androidTestImplementation 'commons-io:commons-io:2.6'
androidTestImplementation 'org.apache.commons:commons-lang3:3.9'