From 0f84804f9f12f55d8cc3376c6f6144aac8ebd731 Mon Sep 17 00:00:00 2001 From: andrekir Date: Wed, 24 May 2023 06:27:45 -0300 Subject: [PATCH] chore: update Compose Compiler to 1.4.7 --- app/build.gradle | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 36c91422..1f3f0af9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -84,7 +84,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion = "1.4.4" + kotlinCompilerExtensionVersion = "1.4.7" } // Set both the Java and Kotlin compilers to target Java 8. compileOptions { @@ -169,7 +169,7 @@ dependencies { androidTestImplementation "androidx.navigation:navigation-testing:$nav_version" // Compose - def composeBom = platform('androidx.compose:compose-bom:2023.03.00') + def composeBom = platform('androidx.compose:compose-bom:2023.05.01') implementation composeBom androidTestImplementation composeBom diff --git a/build.gradle b/build.gradle index ab2a8ca1..841652d9 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext { useCrashlytics = false - kotlin_version = '1.8.10' + kotlin_version = '1.8.21' hilt_version = '2.46.1' protobuf_version = '3.23.1' }