From c168e7ec0a0fdbf4c65a749a6786a5b62d65b00e Mon Sep 17 00:00:00 2001 From: Aparna Vadlamani Date: Fri, 22 Sep 2023 17:53:21 +0530 Subject: [PATCH] Updating Compose Version (#186) --- app/build.gradle | 13 +++++++------ build.gradle | 5 +++-- navi-uitron/build.gradle | 6 +++--- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6a0a8d8..51848b0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,11 +3,12 @@ plugins { id 'org.jetbrains.kotlin.android' id 'kotlin-kapt' id 'com.google.dagger.hilt.android' + id 'com.google.devtools.ksp' } android { namespace 'com.uitron.demo' - compileSdk 33 + compileSdk 34 defaultConfig { applicationId "com.uitron.demo" @@ -54,7 +55,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion '1.4.3' + kotlinCompilerExtensionVersion '1.5.3' } packagingOptions { resources { @@ -64,7 +65,7 @@ android { } dependencies { - implementation platform("androidx.compose:compose-bom:2023.06.01") + implementation platform("androidx.compose:compose-bom:2023.09.01") implementation project(':navi-uitron') implementation 'androidx.appcompat:appcompat:1.6.1' @@ -100,13 +101,13 @@ dependencies { //Room def room_version = "2.5.2" implementation "androidx.room:room-runtime:$room_version" - kapt "androidx.room:room-compiler:$room_version" + ksp "androidx.room:room-compiler:$room_version" implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-paging:$room_version" // Hilt - implementation 'com.google.dagger:hilt-android:2.44' + implementation 'com.google.dagger:hilt-android:2.48' kapt 'androidx.hilt:hilt-compiler:1.0.0' - kapt 'com.google.dagger:hilt-android-compiler:2.44' + kapt 'com.google.dagger:hilt-android-compiler:2.48' implementation "androidx.hilt:hilt-navigation-compose:1.0.0" } \ No newline at end of file diff --git a/build.gradle b/build.gradle index b794124..fd5f466 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,8 @@ buildscript { plugins { id 'com.android.application' version '8.1.0' apply false id 'com.android.library' version '8.1.0' apply false - id 'org.jetbrains.kotlin.android' version '1.8.10' apply false + id 'org.jetbrains.kotlin.android' version '1.9.10' apply false id 'com.android.test' version '8.1.0' apply false - id 'com.google.dagger.hilt.android' version '2.44' apply false + id 'com.google.dagger.hilt.android' version '2.48' apply false + id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false } diff --git a/navi-uitron/build.gradle b/navi-uitron/build.gradle index 22d77aa..786e87b 100644 --- a/navi-uitron/build.gradle +++ b/navi-uitron/build.gradle @@ -9,7 +9,7 @@ def VERSION_NAME = "1.0.23" android { namespace 'com.navi.uitron' - compileSdk 33 + compileSdk 34 defaultConfig { minSdk 21 @@ -36,7 +36,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion '1.4.3' + kotlinCompilerExtensionVersion '1.5.3' } } @@ -81,7 +81,7 @@ publishing { } dependencies { - implementation platform("androidx.compose:compose-bom:2023.06.01") + implementation platform("androidx.compose:compose-bom:2023.09.01") implementation "androidx.compose.ui:ui" implementation "androidx.compose.material:material"