From e54770246853d082f5a1b01a7061533ea8a4d027 Mon Sep 17 00:00:00 2001 From: Jerboa-app Date: Thu, 18 Jul 2024 21:28:54 +0100 Subject: [PATCH 1/2] update minor deps --- app/build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ccd7713..c8adf87 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -112,21 +112,21 @@ dependencies { } } - implementation 'androidx.core:core-ktx:1.12.0' + implementation 'androidx.core:core-ktx:1.13.1' implementation "androidx.compose.ui:ui:$compose_version" implementation "androidx.compose.material:material:$compose_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_version" - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2' - implementation 'androidx.activity:activity-compose:1.8.2' - implementation "com.google.android.gms:play-services-games-v2:19.0.0" - implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.3' + implementation 'androidx.activity:activity-compose:1.9.0' + implementation "com.google.android.gms:play-services-games-v2:20.1.2" + implementation 'androidx.appcompat:appcompat:1.7.0' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation 'androidx.test.ext:junit:1.2.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" debugImplementation "androidx.compose.ui:ui-tooling:$compose_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version" implementation "androidx.compose.runtime:runtime-livedata:$compose_version" - implementation 'com.google.android.gms:play-services-oss-licenses:17.0.1' + implementation 'com.google.android.gms:play-services-oss-licenses:17.1.0' implementation("com.google.android.play:review:2.0.1") } \ No newline at end of file From 866d82cfefec56cd78a00042e85c86b34292bd46 Mon Sep 17 00:00:00 2001 From: Jerboa-app Date: Thu, 18 Jul 2024 21:50:40 +0100 Subject: [PATCH 2/2] update compose version --- app/build.gradle | 2 +- build.gradle | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c8adf87..1968540 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -89,7 +89,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion compose_version + kotlinCompilerExtensionVersion compose_compiler_version } packagingOptions { resources { diff --git a/build.gradle b/build.gradle index 6cc14ce..42d516c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,8 @@ buildscript { ext { - compose_version = '1.5.4' + compose_compiler_version = '1.5.14' + compose_version = '1.6.8' } repositories { google() @@ -16,7 +17,7 @@ buildscript { plugins { id 'com.android.application' version '8.2.0' apply false id 'com.android.library' version '8.2.0' apply false - id 'org.jetbrains.kotlin.android' version '1.9.20' apply false + id 'org.jetbrains.kotlin.android' version '1.9.24' apply false } task clean(type: Delete) {