From b30caa41f6c8ad6e722686b078508b468ff1e9b8 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Tue, 11 Oct 2022 10:56:06 +0200 Subject: [PATCH] Bump dependencies --- app/build.gradle | 15 +++++++-------- build.gradle | 4 ++-- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c3ddbfc..8f3f976 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,12 +5,12 @@ plugins { android { namespace 'dev.lonami.talaria' - compileSdk 32 + compileSdk 33 defaultConfig { applicationId "dev.lonami.talaria" minSdk 21 - targetSdk 32 + targetSdk 33 versionCode 1 versionName "0.1.0" @@ -47,17 +47,16 @@ android { } dependencies { - - implementation 'androidx.core:core-ktx:1.7.0' - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1' - implementation 'androidx.activity:activity-compose:1.3.1' + implementation 'androidx.core:core-ktx:1.9.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1' + implementation 'androidx.activity:activity-compose:1.6.0' implementation "androidx.compose.ui:ui:$compose_ui_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version" - implementation 'androidx.compose.material:material:1.1.1' + implementation 'androidx.compose.material:material:1.2.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version" debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version" -} \ No newline at end of file +} diff --git a/build.gradle b/build.gradle index da26296..639934d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,10 @@ buildscript { ext { - compose_ui_version = '1.1.1' + compose_ui_version = '1.2.1' } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id 'com.android.application' version '7.3.0' apply false id 'com.android.library' version '7.3.0' apply false id 'org.jetbrains.kotlin.android' version '1.6.10' apply false -} \ No newline at end of file +}