From 41ff92a58719b5b1f85982e2d058d608ddaee76b Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Thu, 7 Jul 2022 12:07:44 -0600 Subject: [PATCH] deps: upgrade Update deps: Kotlin -> 1.7.10 Navigation -> 2.5.0 Lifecycle -> 2.5.0 Activity -> 1.5.0 Fragment -> 1.5.0 --- app/build.gradle | 6 +++--- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4350309db..e3ae63e60 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -62,8 +62,8 @@ dependencies { // General implementation "androidx.core:core-ktx:1.8.0" - implementation "androidx.activity:activity-ktx:1.4.0" - implementation "androidx.fragment:fragment-ktx:1.4.1" + implementation "androidx.activity:activity-ktx:1.5.0" + implementation "androidx.fragment:fragment-ktx:1.5.0" // UI implementation "androidx.recyclerview:recyclerview:1.2.1" @@ -71,7 +71,7 @@ dependencies { implementation "androidx.viewpager2:viewpager2:1.1.0-beta01" // Lifecycle - def lifecycle_version = "2.4.1" + def lifecycle_version = "2.5.0" implementation "androidx.lifecycle:lifecycle-common:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" diff --git a/build.gradle b/build.gradle index 7b884fd93..d82580729 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.7.0' - ext.navigation_version = "2.4.2" + ext.kotlin_version = '1.7.10' + ext.navigation_version = "2.5.0" repositories { google()