From 661d10d25658b4846e44d57c730f29e5d7de96bb Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 24 Oct 2020 14:23:38 +0530 Subject: [PATCH 1/3] build: add dependency updates plugin Signed-off-by: Harsh Shandilya --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 9eda9d31..e02cba60 100644 --- a/build.gradle +++ b/build.gradle @@ -34,6 +34,10 @@ buildscript { } } +plugins { + id("com.github.ben-manes.versions") version "0.33.0" +} + allprojects { repositories { google() From a2e71ee52a22b981c58428dbeb86281b9b9f99d9 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 24 Oct 2020 14:30:50 +0530 Subject: [PATCH 2/3] build: update dependencies Signed-off-by: Harsh Shandilya --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index e02cba60..4205f1ed 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - accompanist_version = "0.3.0" + accompanist_version = "0.3.1" activity_version = "1.2.0-beta01" - agp_version = "4.2.0-alpha13" + agp_version = "4.2.0-alpha14" appcompat_version = "1.3.0-alpha02" browser_version = "1.3.0-alpha06" compose_version = "1.0.0-alpha05" @@ -14,12 +14,12 @@ buildscript { desugar_version = "1.0.10" hilt_androidx_version = "1.0.0-alpha02" hilt_dagger_version = "2.29.1-alpha" - junit_version = "4.13" + junit_version = "4.13.1" kotlin_version = "1.4.10" lifecycle_version = "2.3.0-beta01" material_version = "1.3.0-alpha03" - moshi_version = "1.9.3" - okhttp_version = "3.14.9" + moshi_version = "1.11.0" + okhttp_version = "4.10.0-RC1" retrofit_version = "2.9.0" room_version = "2.3.0-alpha03" } From 2970cc5061e795d72c3ef3dc288eb02e9db44f4f Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 24 Oct 2020 14:34:25 +0530 Subject: [PATCH 3/3] gradle: uprev to Gradle 6.7 Signed-off-by: Harsh Shandilya --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4205f1ed..752f597d 100644 --- a/build.gradle +++ b/build.gradle @@ -90,7 +90,7 @@ task clean(type: Delete) { tasks { wrapper { - gradleVersion = "6.7-rc-3" + gradleVersion = "6.7" distributionType = Wrapper.DistributionType.ALL } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8dbe2cd2..14e30f74 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-rc-3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists