From abf6a2b933ad6814af574ec73cfc82df4c6bb83d Mon Sep 17 00:00:00 2001 From: johan12345 Date: Sun, 19 Sep 2021 19:28:26 +0200 Subject: [PATCH] upgrade some dependencies --- app/build.gradle | 18 +++++++++--------- build.gradle | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index dcb832e5..fc054a94 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -108,16 +108,16 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'androidx.appcompat:appcompat:1.3.0' - implementation 'androidx.core:core-ktx:1.5.0' + implementation 'androidx.appcompat:appcompat:1.3.1' + implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.core:core-splashscreen:1.0.0-alpha01' - implementation "androidx.activity:activity-ktx:1.2.3" - implementation "androidx.fragment:fragment-ktx:1.3.4" + implementation "androidx.activity:activity-ktx:1.3.1" + implementation "androidx.fragment:fragment-ktx:1.3.6" implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.preference:preference-ktx:1.1.1' - implementation 'com.google.android.material:material:1.3.0' + implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.0' - implementation 'androidx.recyclerview:recyclerview:1.2.0' + implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.browser:browser:1.3.0' implementation 'com.github.johan12345:CustomBottomSheetBehavior:f69f532660' implementation 'com.squareup.retrofit2:retrofit:2.9.0' @@ -200,12 +200,12 @@ dependencies { // debug tools implementation 'com.facebook.stetho:stetho:1.5.1' implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1' - testImplementation 'junit:junit:4.13' + testImplementation 'junit:junit:4.13.1' testImplementation "com.squareup.okhttp3:mockwebserver:4.9.0" //noinspection GradleDependency testImplementation 'org.json:json:20080701' - androidTestImplementation 'androidx.test.ext:junit:1.1.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' kapt "com.squareup.moshi:moshi-kotlin-codegen:1.12.0" diff --git a/build.gradle b/build.gradle index 4a6e4ddd..7c9c778f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.5.10' + ext.kotlin_version = '1.5.20' ext.about_libs_version = '8.8.5' ext.nav_version = '2.3.5' repositories { @@ -10,7 +10,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.0' + classpath 'com.android.tools.build:gradle:7.0.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libs_version" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"