From fc6ee96ee8c74d7e7de36d42ede277459e4d51c9 Mon Sep 17 00:00:00 2001 From: Dale Hawkins Date: Wed, 7 Feb 2024 09:31:40 -0700 Subject: [PATCH] chore: Update to gradle 8.2.2, kotlin to 1.9.22, hilt to 2.50 --- app/build.gradle | 10 +++++----- build.gradle | 8 ++++---- places-ktx/build.gradle | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 9cd1f63..27cc31b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -60,17 +60,17 @@ android { dependencies { implementation "androidx.appcompat:appcompat:1.6.1" implementation "androidx.core:core-ktx:1.12.0" - implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.21" + implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.22" implementation 'androidx.multidex:multidex:2.0.1' implementation "com.google.android.gms:play-services-maps:18.2.0" implementation "androidx.fragment:fragment-ktx:1.6.2" - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2' - implementation 'com.google.android.material:material:1.10.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0' + implementation 'com.google.android.material:material:1.11.0' implementation 'com.android.volley:volley:1.2.1' // Hilt - implementation "com.google.dagger:hilt-android:2.48.1" - kapt "com.google.dagger:hilt-android-compiler:2.48.1" + implementation "com.google.dagger:hilt-android:2.50" + kapt "com.google.dagger:hilt-android-compiler:2.50" implementation project(':places-ktx') } diff --git a/build.gradle b/build.gradle index 6fc4aad..00e9157 100644 --- a/build.gradle +++ b/build.gradle @@ -21,10 +21,10 @@ buildscript { maven { url "https://plugins.gradle.org/m2/" } } dependencies { - classpath 'com.android.tools.build:gradle:8.1.4' + classpath 'com.android.tools.build:gradle:8.2.2' classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.9.10' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10" - classpath "com.google.dagger:hilt-android-gradle-plugin:2.48" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22" + classpath "com.google.dagger:hilt-android-gradle-plugin:2.50" classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1" classpath 'com.mxalbert.gradle:jacoco-android:0.2.1' } @@ -168,4 +168,4 @@ subprojects { project -> tasks.register('clean', Delete) { delete rootProject.buildDir -} \ No newline at end of file +} diff --git a/places-ktx/build.gradle b/places-ktx/build.gradle index 9e9dae2..994ce4f 100644 --- a/places-ktx/build.gradle +++ b/places-ktx/build.gradle @@ -48,7 +48,7 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.22" implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") - implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0" implementation "com.android.volley:volley:1.2.1" implementation 'androidx.multidex:multidex:2.0.1' api "org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.7.3"