From 45e8d97293a4fcabc2249ed471936978931f2b37 Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Thu, 8 Apr 2021 11:55:50 +0900 Subject: [PATCH 1/3] Update AGP --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index cc752b2..67bc97c 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { jcenter() } 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:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ad740e2..83655f6 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Tue Oct 13 08:30:00 JST 2020 +#Thu Apr 08 11:55:00 JST 2021 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip From 82bf28794463828709f18500a38e1ea869b3e53e Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Thu, 8 Apr 2021 11:57:00 +0900 Subject: [PATCH 2/3] Kotlin 1.4.32 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 67bc97c..d9496f3 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.4.21' + ext.kotlin_version = '1.4.32' repositories { google() From ebf6720ad4ac02a9253d3a48b7061e978ae6fe33 Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Thu, 8 Apr 2021 11:59:32 +0900 Subject: [PATCH 3/3] RecyclerView 1.2.0 --- app/build.gradle | 6 +++--- emptyrecyclerview/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a5ffdc2..9314bce 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,12 +28,12 @@ dependencies { implementation project(':emptyrecyclerview') implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'androidx.recyclerview:recyclerview:1.1.0' + implementation 'androidx.recyclerview:recyclerview:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.core:core-ktx:1.3.2' - implementation 'com.google.android.material:material:1.2.1' + implementation 'com.google.android.material:material:1.3.0' - testImplementation 'junit:junit:4.13.1' + testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' } diff --git a/emptyrecyclerview/build.gradle b/emptyrecyclerview/build.gradle index eb8e15c..6bd99e8 100644 --- a/emptyrecyclerview/build.gradle +++ b/emptyrecyclerview/build.gradle @@ -17,5 +17,5 @@ android { } dependencies { - implementation 'androidx.recyclerview:recyclerview:1.1.0' + implementation 'androidx.recyclerview:recyclerview:1.2.0' }