From 1458f096fa0cd47726a60ba94dfeb6cbdda33e1f Mon Sep 17 00:00:00 2001 From: odaridavid <20339228+odaridavid@users.noreply.github.com> Date: Thu, 29 Aug 2024 08:05:49 +0000 Subject: [PATCH 1/3] Update version catalog --- gradle/libs.versions.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 67da812..e291771 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,32 +1,32 @@ [versions] -about-lib = "11.2.2" +about-lib = "11.2.3" activity-compose = "1.9.1" android-gradle-plugin = "8.6.0-rc01" androidx-test-rules = "1.6.1" -androidx-test-runner = "1.6.1" +androidx-test-runner = "1.6.2" chucker = "4.0.0" coil-compose = "2.7.0" com-google-services = "4.4.2" -compose-bom = "2024.06.00" +compose-bom = "2024.08.00" compose-constraint = "1.0.1" -compose-material3 = "1.2.1" -compose-navigation = "2.7.7" +compose-material3 = "1.3.0-rc01" +compose-navigation = "2.8.0-rc01" core-ktx = "1.6.1" core-ktx-version = "1.13.1" -coroutines = "1.9.0-RC" -coroutines-test = "1.9.0-RC" +coroutines = "1.9.0-RC.2" +coroutines-test = "1.9.0-RC.2" crashlytics-plugin = "3.0.2" datastore = "1.1.1" -firebase-bom = "33.1.2" +firebase-bom = "33.2.0" firebase-perf = "1.4.2" hilt = "2.52" hilt-nav-compose = "1.2.0" inappupdate = "2.1.0" junit = "4.13.2" -kotlin = "2.0.20-RC" -kotlin-serialization = "2.0.20-RC" -kotlinx-coroutines-android = "1.9.0-RC" -kotlinx-serialization = "1.7.1" +kotlin = "2.0.20" +kotlin-serialization = "2.0.20" +kotlinx-coroutines-android = "1.9.0-RC.2" +kotlinx-serialization = "1.7.2" kotlinx-serialization-converter = "1.0.0" leakcanary = "2.14" lifecycle-runtime-ktx = "2.8.4" From 4ca2b215b499a802549ce136b5af7b08a1bf151e Mon Sep 17 00:00:00 2001 From: odaridavid Date: Thu, 29 Aug 2024 11:45:08 +0200 Subject: [PATCH 2/3] Comment out insets --- .../odaridavid/weatherapp/designsystem/organism/BottomSheets.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt b/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt index 0e21d48..cea510a 100644 --- a/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt +++ b/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt @@ -128,7 +128,7 @@ fun SingleSelectBottomSheet( } }, sheetState = sheetState, - windowInsets = WindowInsets.navigationBars, +// windowInsets = WindowInsets.navigationBars, ) { Column( modifier = Modifier.fillMaxWidth() From 8cbdd424479d55507b837a1665342baa00a442df Mon Sep 17 00:00:00 2001 From: odaridavid Date: Thu, 29 Aug 2024 12:15:51 +0200 Subject: [PATCH 3/3] Comment out insets --- .../weatherapp/designsystem/organism/BottomSheets.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt b/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt index cea510a..8ab0d51 100644 --- a/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt +++ b/app/src/main/java/com/github/odaridavid/weatherapp/designsystem/organism/BottomSheets.kt @@ -3,9 +3,7 @@ package com.github.odaridavid.weatherapp.designsystem.organism import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.WindowInsets import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.navigationBars import androidx.compose.foundation.layout.padding import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.items @@ -54,7 +52,7 @@ fun MultiSelectBottomSheet( } }, sheetState = sheetState, - windowInsets = WindowInsets.navigationBars, +// windowInsets = WindowInsets.navigationBars, ) { Column( modifier = Modifier