From 01918c68114c6114b93668966e0ed90cdfca7b23 Mon Sep 17 00:00:00 2001 From: Javier Arroyo Date: Tue, 24 Jun 2025 17:23:50 +0200 Subject: [PATCH 1/2] Feature: Add Compose Resources to Library-UI --- .../electricity/ui/ElectricityScreen.kt | 10 ++- .../ui/launchdetail/LaunchDetailScreen.kt | 10 ++- modules/feature-schedules/build.gradle.kts | 1 + .../schedules/ui/list/ScheduleListScreen.kt | 16 ++--- .../ui/scheduledetail/ScheduleDetailScreen.kt | 17 +++-- .../composeResources/drawable/ui_ic_add.xml | 9 +++ .../drawable/ui_ic_delete.xml | 9 +++ .../composeResources/drawable/ui_ic_empty.xml | 12 ++++ .../composeResources/drawable/ui_ic_user.xml | 10 +++ .../library/ui/shared/component/EmptyState.kt | 65 +++++++++++++++++++ .../ui/shared/resources/SharedResources.kt | 18 +++++ 11 files changed, 154 insertions(+), 23 deletions(-) create mode 100644 modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_add.xml create mode 100644 modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_delete.xml create mode 100644 modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_empty.xml create mode 100644 modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_user.xml create mode 100644 modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/component/EmptyState.kt create mode 100644 modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/resources/SharedResources.kt diff --git a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt index 4174193..4f1c632 100644 --- a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt +++ b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt @@ -35,6 +35,8 @@ import co.touchlab.kermit.Logger import com.jarroyo.feature.electricity.ui.ElectricityContract.Effect import com.jarroyo.feature.electricity.ui.ElectricityContract.Event import com.jarroyo.feature.electricity.ui.ElectricityContract.State +import com.jarroyo.library.ui.shared.component.EmptyState +import com.jarroyo.library.ui.shared.component.EmptyStateWithImage import com.jarroyo.library.ui.shared.component.LocalMainScaffoldPadding import com.jarroyo.library.ui.shared.theme.Spacing import com.kizitonwose.calendar.core.now @@ -108,8 +110,12 @@ private fun ElectricityScreen( modifier = Modifier.padding(Spacing.x02), verticalArrangement = Arrangement.spacedBy(Spacing.x02), ) { - Text(LocalDate.now().toString()) - XYSamplePlot(state) + if (state.loading || state.electricityData != null) { + Text(LocalDate.now().toString()) + XYSamplePlot(state) + } else { + EmptyStateWithImage("Something was wrong getting Electricity data.") + } } } } diff --git a/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt b/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt index 09be386..291b72d 100644 --- a/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt +++ b/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt @@ -32,6 +32,8 @@ import com.jarroyo.feature.launches.api.destination.LaunchDestination import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.Effect import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.Event import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.State +import com.jarroyo.library.ui.shared.component.EmptyState +import com.jarroyo.library.ui.shared.component.EmptyStateWithImage import com.jarroyo.library.ui.shared.component.LocalNavHostController import com.jarroyo.library.ui.shared.component.placeholder import com.jarroyo.library.ui.shared.component.setResult @@ -96,11 +98,7 @@ private fun LaunchDetailScreen( if (state.launch != null) { DetailItem(state.launch, sendEvent) } else { - Text( - text = "NO data available", - modifier = Modifier.fillMaxWidth(), - textAlign = TextAlign.Center, - ) + EmptyStateWithImage("NO data available") } } } @@ -186,7 +184,7 @@ private fun BottomBar( onClick = { sendEvent(Event.OnAddFavoritesButtonClicked) }, modifier = Modifier .fillMaxWidth() - .padding(horizontal = Spacing.x01) + .padding(Spacing.x02) .navigationBarsPadding(), enabled = !state.loading, ) { diff --git a/modules/feature-schedules/build.gradle.kts b/modules/feature-schedules/build.gradle.kts index a794d40..2ec591b 100644 --- a/modules/feature-schedules/build.gradle.kts +++ b/modules/feature-schedules/build.gradle.kts @@ -23,6 +23,7 @@ kotlin { androidMain.dependencies { } commonMain.dependencies { + implementation(compose.components.resources) implementation(compose.ui) implementation(compose.foundation) implementation(compose.material) diff --git a/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/list/ScheduleListScreen.kt b/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/list/ScheduleListScreen.kt index 5ad91fb..c49d7ba 100644 --- a/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/list/ScheduleListScreen.kt +++ b/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/list/ScheduleListScreen.kt @@ -4,8 +4,8 @@ import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.LazyListScope import androidx.compose.foundation.lazy.rememberLazyListState @@ -32,12 +32,12 @@ import androidx.compose.runtime.setValue import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.layout.onGloballyPositioned -import androidx.compose.ui.text.style.TextAlign import com.jarroyo.feature.schedules.api.destination.ScheduleDetailDestination import com.jarroyo.feature.schedules.api.model.Schedule import com.jarroyo.feature.schedules.ui.list.ScheduleListContract.Effect import com.jarroyo.feature.schedules.ui.list.ScheduleListContract.Event import com.jarroyo.feature.schedules.ui.list.ScheduleListContract.State +import com.jarroyo.library.ui.shared.component.EmptyStateWithImage import com.jarroyo.library.ui.shared.component.LocalMainScaffoldPadding import com.jarroyo.library.ui.shared.component.LocalNavHostController import com.jarroyo.library.ui.shared.component.observeResult @@ -119,20 +119,16 @@ private fun ScheduleListScreen( verticalArrangement = Arrangement.spacedBy(Spacing.x01), ) { if (state.scheduleList.isNullOrEmpty() && state.loading) { - rocketList(getScheduleListPlaceholderData(), sendEvent, placeholder = true) + scheduleList(getScheduleListPlaceholderData(), sendEvent, placeholder = true) } else { if (!state.scheduleList.isNullOrEmpty()) { - rocketList( + scheduleList( data = state.scheduleList, sendEvent = sendEvent, ) } else { item { - Text( - text = "NO data available", - modifier = Modifier.fillMaxWidth(), - textAlign = TextAlign.Center, - ) + EmptyStateWithImage("No data available") } } } @@ -141,7 +137,7 @@ private fun ScheduleListScreen( } } -private fun LazyListScope.rocketList( +private fun LazyListScope.scheduleList( data: List, sendEvent: (event: Event) -> Unit, placeholder: Boolean = false, diff --git a/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/scheduledetail/ScheduleDetailScreen.kt b/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/scheduledetail/ScheduleDetailScreen.kt index 81cc604..8ba5c16 100644 --- a/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/scheduledetail/ScheduleDetailScreen.kt +++ b/modules/feature-schedules/src/commonMain/kotlin/com/jarroyo/feature/schedules/ui/scheduledetail/ScheduleDetailScreen.kt @@ -20,7 +20,6 @@ import androidx.compose.material3.Text import androidx.compose.material3.TopAppBar import androidx.compose.material.icons.Icons import androidx.compose.material.icons.automirrored.filled.ArrowBack -import androidx.compose.material.icons.filled.Delete import androidx.compose.material3.ButtonDefaults import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.material3.InputChip @@ -44,11 +43,13 @@ import com.jarroyo.library.ui.shared.component.LocalNavHostController import com.jarroyo.library.ui.shared.component.observeResult import com.jarroyo.library.ui.shared.component.placeholder import com.jarroyo.library.ui.shared.component.setResult +import com.jarroyo.library.ui.shared.resources.SharedResources import com.jarroyo.library.ui.shared.theme.Spacing import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.collect import kotlinx.coroutines.flow.onEach import kotlinx.coroutines.launch +import org.jetbrains.compose.resources.painterResource import org.koin.compose.viewmodel.koinViewModel @Composable @@ -173,7 +174,7 @@ private fun TopAppBar( onClick = { sendEvent(Event.OnRemoveButtonClicked) }, ) { Icon( - imageVector = Icons.Filled.Delete, + painter = painterResource(SharedResources.ui_ic_delete), contentDescription = null, ) } @@ -199,13 +200,13 @@ fun UserListItem( horizontalArrangement = Arrangement.spacedBy(Spacing.quarter), ) { for (user in userList) { - OptionPrimitiveItem( + UserInputChipItem( text = user.getFullName(), onclick = { sendEvent(Event.OnUserItemClicked) }, placeholder = placeholder, ) } - OptionPrimitiveItem( + UserInputChipItem( text = "Add more", onclick = { sendEvent(Event.OnUserItemClicked) }, placeholder = placeholder, @@ -215,7 +216,7 @@ fun UserListItem( } @Composable -fun OptionPrimitiveItem( +fun UserInputChipItem( text: String, onclick: () -> Unit, modifier: Modifier = Modifier, @@ -237,6 +238,12 @@ fun OptionPrimitiveItem( ) }, modifier = Modifier.placeholder(placeholder), + leadingIcon = { + Icon( + painter = painterResource(SharedResources.ui_ic_user), + contentDescription = null, + ) + }, ) } } diff --git a/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_add.xml b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_add.xml new file mode 100644 index 0000000..1e65ed9 --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_add.xml @@ -0,0 +1,9 @@ + + + diff --git a/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_delete.xml b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_delete.xml new file mode 100644 index 0000000..ab81b78 --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_delete.xml @@ -0,0 +1,9 @@ + + + diff --git a/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_empty.xml b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_empty.xml new file mode 100644 index 0000000..2e96423 --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_empty.xml @@ -0,0 +1,12 @@ + + + + + diff --git a/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_user.xml b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_user.xml new file mode 100644 index 0000000..bc6b599 --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/composeResources/drawable/ui_ic_user.xml @@ -0,0 +1,10 @@ + + + diff --git a/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/component/EmptyState.kt b/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/component/EmptyState.kt new file mode 100644 index 0000000..e606577 --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/component/EmptyState.kt @@ -0,0 +1,65 @@ +package com.jarroyo.library.ui.shared.component + +import androidx.compose.foundation.Image +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.painter.Painter +import composeapp.modules.library_ui_shared.generated.resources.Res +import androidx.compose.ui.text.style.TextAlign +import com.jarroyo.library.ui.shared.theme.Spacing +import com.jarroyo.library.ui.shared.theme.textSecondary +import composeapp.modules.library_ui_shared.generated.resources.ui_ic_empty +import org.jetbrains.compose.resources.painterResource + +@Composable +fun EmptyState( + text: String, + modifier: Modifier = Modifier, + image: Painter? = null, + onClick: (() -> Unit)? = null, +) { + Column( + modifier = modifier + .fillMaxWidth() + .then(if (onClick != null) Modifier.clickable(onClick = onClick) else Modifier) + .padding(horizontal = Spacing.x02, vertical = if (image == null) Spacing.x02 else Spacing.x04), + verticalArrangement = Arrangement.spacedBy(Spacing.x02), + ) { + image?.let { painter -> + Image( + painter = painter, + contentDescription = null, + modifier = Modifier.fillMaxWidth(), + ) + } + Text( + text = text, + modifier = Modifier.fillMaxWidth(), + color = MaterialTheme.colorScheme.textSecondary, + textAlign = TextAlign.Center, + style = MaterialTheme.typography.bodyLarge, + ) + } +} + +@Composable +fun EmptyStateWithImage( + text: String, + modifier: Modifier = Modifier, + image: Painter = painterResource(Res.drawable.ui_ic_empty), + onClick: (() -> Unit)? = null, +) { + EmptyState( + text = text, + image = image, + modifier = modifier, + onClick = onClick, + ) +} diff --git a/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/resources/SharedResources.kt b/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/resources/SharedResources.kt new file mode 100644 index 0000000..e9babdc --- /dev/null +++ b/modules/library-ui-shared/src/commonMain/kotlin/com/jarroyo/library/ui/shared/resources/SharedResources.kt @@ -0,0 +1,18 @@ +package com.jarroyo.library.ui.shared.resources + +import org.jetbrains.compose.resources.DrawableResource +import composeapp.modules.library_ui_shared.generated.resources.Res +import composeapp.modules.library_ui_shared.generated.resources.ui_ic_add +import composeapp.modules.library_ui_shared.generated.resources.ui_ic_delete +import composeapp.modules.library_ui_shared.generated.resources.ui_ic_user + +object SharedResources { + val ui_ic_add: DrawableResource + get() = Res.drawable.ui_ic_add + + val ui_ic_delete: DrawableResource + get() = Res.drawable.ui_ic_delete + + val ui_ic_user: DrawableResource + get() = Res.drawable.ui_ic_user +} From 78f45e690e932116428c80a7c40256e014222b7d Mon Sep 17 00:00:00 2001 From: Javier Arroyo Date: Tue, 24 Jun 2025 17:24:14 +0200 Subject: [PATCH 2/2] Update Dependencies & improvements on Electricity screen --- README.md | 2 +- ...ndroidTestRuntimeClasspathDependencies.txt | 602 +++---- .../debugRuntimeClasspathDependencies.txt | 1505 ++++++++-------- ...ugUnitTestRuntimeClasspathDependencies.txt | 1509 +++++++++-------- .../releaseRuntimeClasspathDependencies.txt | 1467 ++++++++-------- ...seUnitTestRuntimeClasspathDependencies.txt | 1471 ++++++++-------- .../build/libs/build-conventions.jar | Bin 2089284 -> 2089284 bytes gradle/libs.versions.toml | 8 +- .../UserInterfaceState.xcuserstate | Bin 32877 -> 32877 bytes .../electricity/ui/ElectricityContract.kt | 4 + .../electricity/ui/ElectricityScreen.kt | 42 +- .../electricity/ui/ElectricityViewModel.kt | 15 +- .../ui/launchdetail/LaunchDetailScreen.kt | 2 - 13 files changed, 3338 insertions(+), 3289 deletions(-) diff --git a/README.md b/README.md index fc2a4d5..bda2c69 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![CI-MASTER](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml) -[![Latest release](https://img.shields.io/github/v/release/JetBrains/compose-multiplatform?color=blue&label=Compose%20multiplatform)](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.7.3) +[![Latest release](https://img.shields.io/github/v/release/JetBrains/compose-multiplatform?color=blue&label=Compose%20multiplatform)](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.8.2) ![Kotlin Version](https://img.shields.io/badge/Kotlin-2.1.20-blue?logo=kotlin&logoColor=white)
Compose multiplatform charts diff --git a/app/versions/dependencies/debugAndroidTestRuntimeClasspathDependencies.txt b/app/versions/dependencies/debugAndroidTestRuntimeClasspathDependencies.txt index 1d5304b..fd93f61 100644 --- a/app/versions/dependencies/debugAndroidTestRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/debugAndroidTestRuntimeClasspathDependencies.txt @@ -40,23 +40,23 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1 (c) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.0-beta01 +| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) | | +--- androidx.test:monitor:1.7.1 (*) | | +--- androidx.tracing:tracing:1.1.0 -> 1.2.0 (*) | | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava @@ -78,8 +78,8 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | +--- org.hamcrest:hamcrest-library:1.3 | | \--- org.hamcrest:hamcrest-core:1.3 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.21 (*) -+--- androidx.compose.ui:ui-test-junit4:1.8.2 -| \--- androidx.compose.ui:ui-test-junit4-android:1.8.2 ++--- androidx.compose.ui:ui-test-junit4:1.8.3 +| \--- androidx.compose.ui:ui-test-junit4-android:1.8.3 | +--- androidx.activity:activity:1.2.1 -> 1.10.1 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 @@ -100,8 +100,8 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | +--- androidx.interpolator:interpolator:1.0.0 | | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.0-beta01 -| | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.0-beta01 +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.1 +| | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.arch.core:core-common:2.2.0 | | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -109,7 +109,7 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | | | \--- androidx.arch.core:core-common:2.2.0 (*) | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -123,17 +123,17 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) | | | | +--- androidx.tracing:tracing:1.2.0 (*) | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -146,55 +146,55 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | +--- androidx.core:core:1.16.0 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.0-beta01 +| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.core:core-viewtree:1.0.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | +--- androidx.savedstate:savedstate:1.3.0-beta01 -| | | | \--- androidx.savedstate:savedstate-android:1.3.0-beta01 -| | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | +--- androidx.savedstate:savedstate:1.3.0 +| | | | \--- androidx.savedstate:savedstate-android:1.3.0 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 @@ -203,25 +203,25 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- androidx.tracing:tracing:1.0.0 -> 1.2.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) @@ -231,64 +231,64 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | +--- androidx.activity:activity-compose:1.3.0 -> 1.10.1 | | +--- androidx.activity:activity-ktx:1.10.1 | | | +--- androidx.activity:activity:1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 +| | | | +--- androidx.savedstate:savedstate:1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) +| | | | +--- androidx.savedstate:savedstate:1.3.0 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | +--- androidx.activity:activity:1.10.1 (c) | | | \--- androidx.activity:activity-compose:1.10.1 (c) -| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-android:1.8.2 +| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-android:1.8.3 | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 +| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 -| | | \--- androidx.compose.ui:ui-android:1.8.2 +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 +| | | \--- androidx.compose.ui:ui-android:1.8.3 | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 (*) | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) @@ -296,178 +296,178 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | | \--- androidx.core:core:1.1.0 -> 1.16.0 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 -| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 +| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 -| | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 +| | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 -| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 +| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 -| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 +| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- androidx.collection:collection:1.5.0 (c) -| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | +--- androidx.graphics:graphics-path:1.0.1 | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 -| | | | \--- androidx.compose.ui:ui-text-android:1.8.2 +| | | +--- androidx.compose.ui:ui-text:1.8.3 +| | | | \--- androidx.compose.ui:ui-text-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | +--- androidx.emoji2:emoji2:1.4.0 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.16.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | +--- androidx.startup:startup-runtime:1.1.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) +| | | | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) | | | | | \--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.16.0 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.4.0 (*) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-test:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-test:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) -| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | +--- androidx.activity:activity:1.10.1 (c) | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| +--- androidx.compose.runtime:runtime-saveable:1.6.0 -> 1.8.2 (*) -| +--- androidx.compose.ui:ui-test:1.8.2 -| | \--- androidx.compose.ui:ui-test-android:1.8.2 +| +--- androidx.compose.runtime:runtime-saveable:1.6.0 -> 1.8.3 (*) +| +--- androidx.compose.ui:ui-test:1.8.3 +| | \--- androidx.compose.ui:ui-test-android:1.8.3 | | +--- androidx.activity:activity-compose:1.3.0 -> 1.10.1 (*) | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | +--- androidx.compose.ui:ui-text:1.8.2 (*) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | +--- androidx.compose.ui:ui-text:1.8.3 (*) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | +--- androidx.core:core-ktx:1.12.0 -> 1.16.0 (*) | | +--- androidx.test:monitor:1.6.1 -> 1.7.1 (*) | | +--- androidx.test.espresso:espresso-core:3.5.0 -> 3.6.1 (*) @@ -480,16 +480,16 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-test-junit4:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-test-junit4:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | \--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.9.0-beta01 (*) -| +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.9.0-beta01 (*) +| | \--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.9.1 (*) | +--- androidx.test:core:1.5.0 -> 1.6.1 (*) | +--- androidx.test:monitor:1.6.1 -> 1.7.1 (*) | +--- androidx.test.ext:junit:1.1.5 @@ -501,14 +501,14 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3 -> 1.10.1 (*) -| +--- androidx.compose.ui:ui-test:1.8.2 (c) +| +--- androidx.compose.ui:ui-test:1.8.3 (c) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| +--- androidx.compose.ui:ui-util:1.8.2 (c) -| \--- androidx.compose.ui:ui-geometry:1.8.2 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| +--- androidx.compose.ui:ui-util:1.8.3 (c) +| \--- androidx.compose.ui:ui-geometry:1.8.3 (c) +--- dev.gitlive:firebase-firestore:2.1.0 | \--- dev.gitlive:firebase-firestore-android-debug:2.1.0 | +--- com.google.firebase:firebase-firestore -> 25.1.0 @@ -524,48 +524,48 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.4.1 (*) | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 (*) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 (*) | | | +--- androidx.loader:loader:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.0-beta01 +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.1 | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.0-beta01 (*) +| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.1 (*) | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.4.1 (*) -| | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | +--- androidx.viewpager:viewpager:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) @@ -711,15 +711,15 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. +--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.21} -> 2.1.21 (c) +--- dev.gitlive:firebase-firestore-android-debug:{strictly 2.1.0} -> 2.1.0 (c) +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 2.1.21} -> 2.1.21 (c) -+--- androidx.lifecycle:lifecycle-common:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-common:{strictly 2.9.1} -> 2.9.1 (c) +--- androidx.tracing:tracing:{strictly 1.2.0} -> 1.2.0 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.10.1} -> 1.10.1 (c) +--- androidx.annotation:annotation-jvm:{strictly 1.9.1} -> 1.9.1 (c) +--- org.jetbrains:annotations:{strictly 23.0.0} -> 23.0.0 (c) +--- androidx.activity:activity:{strictly 1.10.1} -> 1.10.1 (c) +--- androidx.activity:activity-compose:{strictly 1.10.1} -> 1.10.1 (c) -+--- androidx.compose.runtime:runtime-saveable:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.compose.runtime:runtime-saveable:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.9.1} -> 2.9.1 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.10.1} -> 1.10.1 (c) +--- com.google.firebase:firebase-firestore:{strictly 25.1.0} -> 25.1.0 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:{strictly 1.10.1} -> 1.10.1 (c) @@ -727,19 +727,19 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. +--- dev.gitlive:firebase-app:{strictly 2.1.0} -> 2.1.0 (c) +--- dev.gitlive:firebase-common:{strictly 2.1.0} -> 2.1.0 (c) +--- dev.gitlive:firebase-common-internal:{strictly 2.1.0} -> 2.1.0 (c) -+--- androidx.lifecycle:lifecycle-common-jvm:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-common-jvm:{strictly 2.9.1} -> 2.9.1 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:{strictly 1.10.1} -> 1.10.1 (c) +--- androidx.core:core-ktx:{strictly 1.16.0} -> 1.16.0 (c) +--- androidx.core:core-viewtree:{strictly 1.0.0} -> 1.0.0 (c) -+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.9.1} -> 2.9.1 (c) +--- androidx.profileinstaller:profileinstaller:{strictly 1.4.1} -> 1.4.1 (c) -+--- androidx.savedstate:savedstate:{strictly 1.3.0-beta01} -> 1.3.0-beta01 (c) ++--- androidx.savedstate:savedstate:{strictly 1.3.0} -> 1.3.0 (c) +--- androidx.activity:activity-ktx:{strictly 1.10.1} -> 1.10.1 (c) -+--- androidx.compose.runtime:runtime:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.runtime:runtime-saveable-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.lifecycle:lifecycle-runtime-android:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.compose.runtime:runtime:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.runtime:runtime-saveable-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.lifecycle:lifecycle-runtime-android:{strictly 2.9.1} -> 2.9.1 (c) +--- com.google.firebase:protolite-well-known-types:{strictly 18.0.0} -> 18.0.0 (c) +--- com.google.android.gms:play-services-tasks:{strictly 18.1.0} -> 18.1.0 (c) +--- com.google.firebase:firebase-annotations:{strictly 16.2.0} -> 16.2.0 (c) @@ -760,20 +760,20 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. +--- dev.gitlive:firebase-common-internal-android-debug:{strictly 2.1.0} -> 2.1.0 (c) +--- org.jspecify:jspecify:{strictly 1.0.0} -> 1.0.0 (c) +--- androidx.collection:collection:{strictly 1.5.0} -> 1.5.0 (c) -+--- androidx.compose.ui:ui-graphics:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-text:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-unit:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-util:{strictly 1.8.2} -> 1.8.2 (c) ++--- androidx.compose.ui:ui-graphics:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-text:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-unit:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-util:{strictly 1.8.3} -> 1.8.3 (c) +--- androidx.core:core:{strictly 1.16.0} -> 1.16.0 (c) -+--- androidx.lifecycle:lifecycle-viewmodel-android:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-viewmodel-android:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:{strictly 2.9.1} -> 2.9.1 (c) +--- androidx.startup:startup-runtime:{strictly 1.1.1} -> 1.1.1 (c) -+--- androidx.savedstate:savedstate-android:{strictly 1.3.0-beta01} -> 1.3.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.savedstate:savedstate-ktx:{strictly 1.3.0-beta01} -> 1.3.0-beta01 (c) -+--- androidx.compose.ui:ui-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.runtime:runtime-android:{strictly 1.8.2} -> 1.8.2 (c) ++--- androidx.savedstate:savedstate-android:{strictly 1.3.0} -> 1.3.0 (c) ++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.savedstate:savedstate-ktx:{strictly 1.3.0} -> 1.3.0 (c) ++--- androidx.compose.ui:ui-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.runtime:runtime-android:{strictly 1.8.3} -> 1.8.3 (c) +--- androidx.arch.core:core-common:{strictly 2.2.0} -> 2.2.0 (c) +--- androidx.arch.core:core-runtime:{strictly 2.2.0} -> 2.2.0 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.10.1} -> 1.10.1 (c) @@ -787,21 +787,21 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. +--- com.squareup.okio:okio:{strictly 3.9.1} -> 3.9.1 (c) +--- io.perfmark:perfmark-api:{strictly 0.26.0} -> 0.26.0 (c) +--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.8.0} -> 1.8.0 (c) -+--- androidx.compose.ui:ui-graphics-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-text-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-unit-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.compose.ui:ui-util-android:{strictly 1.8.2} -> 1.8.2 (c) ++--- androidx.compose.ui:ui-graphics-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-text-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-unit-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.compose.ui:ui-util-android:{strictly 1.8.3} -> 1.8.3 (c) +--- androidx.collection:collection-jvm:{strictly 1.5.0} -> 1.5.0 (c) +--- androidx.annotation:annotation-experimental:{strictly 1.4.1} -> 1.4.1 (c) +--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c) +--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.1} -> 1.1.1 (c) -+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-runtime-ktx-android:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-runtime-ktx-android:{strictly 2.9.1} -> 2.9.1 (c) +--- androidx.autofill:autofill:{strictly 1.0.0} -> 1.0.0 (c) -+--- androidx.compose.ui:ui-geometry:{strictly 1.8.2} -> 1.8.2 (c) ++--- androidx.compose.ui:ui-geometry:{strictly 1.8.3} -> 1.8.3 (c) +--- androidx.customview:customview-poolingcontainer:{strictly 1.0.0} -> 1.0.0 (c) +--- androidx.emoji2:emoji2:{strictly 1.4.0} -> 1.4.0 (c) -+--- androidx.lifecycle:lifecycle-runtime-compose:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.lifecycle:lifecycle-runtime-compose:{strictly 2.9.1} -> 2.9.1 (c) +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.9.10} -> 1.9.10 (c) +--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c) +--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c) @@ -815,13 +815,13 @@ debugAndroidTestRuntimeClasspath - Runtime classpath of '/debugAndroidTest'. +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.8.0} -> 1.8.0 (c) +--- androidx.graphics:graphics-path:{strictly 1.0.1} -> 1.0.1 (c) +--- androidx.collection:collection-ktx:{strictly 1.5.0} -> 1.5.0 (c) -+--- androidx.compose.ui:ui-geometry-android:{strictly 1.8.2} -> 1.8.2 (c) -+--- androidx.lifecycle:lifecycle-runtime-compose-android:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-process:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) -+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) ++--- androidx.compose.ui:ui-geometry-android:{strictly 1.8.3} -> 1.8.3 (c) ++--- androidx.lifecycle:lifecycle-runtime-compose-android:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-process:{strictly 2.9.1} -> 2.9.1 (c) ++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.9.1} -> 2.9.1 (c) +--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c) +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:{strictly 1.8.0} -> 1.8.0 (c) -\--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.9.0-beta01} -> 2.9.0-beta01 (c) +\--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.9.1} -> 2.9.1 (c) (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. diff --git a/app/versions/dependencies/debugRuntimeClasspathDependencies.txt b/app/versions/dependencies/debugRuntimeClasspathDependencies.txt index e497896..df3bb2c 100644 --- a/app/versions/dependencies/debugRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/debugRuntimeClasspathDependencies.txt @@ -53,8 +53,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | \--- com.squareup.curtains:curtains:1.2.4 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 2.1.21 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 2.1.21 (*) -+--- androidx.compose.ui:ui-tooling:1.8.2 -| \--- androidx.compose.ui:ui-tooling-android:1.8.2 ++--- androidx.compose.ui:ui-tooling:1.8.3 +| \--- androidx.compose.ui:ui-tooling-android:1.8.3 | +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 | | +--- androidx.activity:activity-ktx:1.10.1 | | | +--- androidx.activity:activity:1.10.1 @@ -81,8 +81,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | | | +--- androidx.interpolator:interpolator:1.0.0 | | | | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.0-beta01 -| | | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.0-beta01 +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.1 +| | | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | +--- androidx.arch.core:core-common:2.2.0 | | | | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -90,8 +90,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | | | | | \--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 -| | | | | | | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.0-beta01 +| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 +| | | | | | | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.1 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 @@ -105,19 +105,19 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.10.1 (c) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -132,19 +132,19 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | +--- androidx.tracing:tracing:1.2.0 (*) | | | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -157,59 +157,59 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | +--- androidx.core:core:1.16.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 -| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.0-beta01 +| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 +| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 -| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 +| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-android:1.3.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 @@ -222,80 +222,80 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-io-jvm:1.8.0 (c) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- androidx.tracing:tracing:1.0.0 -> 1.2.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | +--- androidx.activity:activity-compose:1.10.1 (c) | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 +| | | | +--- androidx.savedstate:savedstate:1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) +| | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | +--- androidx.activity:activity:1.10.1 (c) | | | \--- androidx.activity:activity-compose:1.10.1 (c) -| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-android:1.8.2 +| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-android:1.8.3 | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) @@ -303,19 +303,19 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 +| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 -| | | \--- androidx.compose.ui:ui-android:1.8.2 +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 +| | | \--- androidx.compose.ui:ui-android:1.8.3 | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 (*) | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) @@ -323,321 +323,321 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | \--- androidx.core:core:1.1.0 -> 1.16.0 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 -| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 +| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 -| | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 +| | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 -| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 +| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 -| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 +| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- androidx.collection:collection:1.5.0 (c) -| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | +--- androidx.graphics:graphics-path:1.0.1 | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 -| | | | \--- androidx.compose.ui:ui-text-android:1.8.2 +| | | +--- androidx.compose.ui:ui-text:1.8.3 +| | | | \--- androidx.compose.ui:ui-text-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | +--- androidx.emoji2:emoji2:1.4.0 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.16.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | +--- androidx.startup:startup-runtime:1.1.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*) | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.16.0 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.4.0 (*) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) -| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | +--- androidx.activity:activity:1.10.1 (c) | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| +--- androidx.compose.animation:animation:1.8.2 -| | \--- androidx.compose.animation:animation-android:1.8.2 +| +--- androidx.compose.animation:animation:1.8.3 +| | \--- androidx.compose.animation:animation-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | +--- androidx.collection:collection:1.5.0 (*) -| | +--- androidx.compose.animation:animation-core:1.8.2 -| | | \--- androidx.compose.animation:animation-core-android:1.8.2 +| | +--- androidx.compose.animation:animation-core:1.8.3 +| | | \--- androidx.compose.animation:animation-core-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.compose.animation:animation:1.8.2 (c) +| | | +--- androidx.compose.animation:animation:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.8.2 -| | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 +| | +--- androidx.compose.foundation:foundation-layout:1.8.3 +| | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.foundation:foundation:1.8.2 (c) +| | | +--- androidx.compose.foundation:foundation:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- androidx.compose.animation:animation-core:1.8.2 (c) +| | +--- androidx.compose.animation:animation-core:1.8.3 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.material:material:1.0.0 -> 1.8.0 -| | \--- androidx.compose.material:material-android:1.8.0 +| +--- androidx.compose.material:material:1.0.0 -> 1.8.2 +| | \--- androidx.compose.material:material-android:1.8.2 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 -| | | \--- androidx.compose.foundation:foundation-android:1.8.2 +| | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 +| | | \--- androidx.compose.foundation:foundation-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation:1.8.2 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.animation:animation:1.8.3 (*) +| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-text:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.13.1 -> 1.16.0 (*) | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) +| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.material:material-ripple:1.8.0 -| | | \--- androidx.compose.material:material-ripple-android:1.8.0 +| | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.material:material-ripple:1.8.2 +| | | \--- androidx.compose.material:material-ripple-android:1.8.2 | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -| | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) +| | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) +| | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.runtime:runtime:1.8.2 (*) -| +--- androidx.compose.ui:ui:1.8.2 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.2 +| +--- androidx.compose.runtime:runtime:1.8.3 (*) +| +--- androidx.compose.ui:ui:1.8.3 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | \--- androidx.compose.ui:ui-util:1.8.2 (c) -| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | \--- androidx.compose.ui:ui-util:1.8.3 (c) +| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| \--- androidx.compose.ui:ui-util:1.8.2 (c) -+--- androidx.compose.ui:ui-test-manifest:1.8.2 +| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| \--- androidx.compose.ui:ui-util:1.8.3 (c) ++--- androidx.compose.ui:ui-test-manifest:1.8.3 | +--- androidx.activity:activity:1.2.1 -> 1.10.1 (*) -| +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| \--- androidx.compose.ui:ui-util:1.8.2 (c) +| +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| \--- androidx.compose.ui:ui-util:1.8.3 (c) +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:2.1.21 @@ -654,9 +654,9 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 2.1.21 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 +--- project :modules:feature-home-shared -| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 +| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 | | | \--- androidx.annotation:annotation:1.9.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) @@ -730,137 +730,137 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | +--- project :modules:library-feature -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-navigation-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 | | | | \--- com.kizitonwose.calendar:compose-multiplatform-android:2.5.4 | | | | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.6.11 -| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.2 (*) +| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.3 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 | | | | | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.animation:animation:1.8.0 -| | | | | | +--- androidx.compose.animation:animation:1.8.0 -> 1.8.2 (*) -| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 -| | | | | | | | +--- androidx.compose.ui:ui:1.8.0 -> 1.8.2 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.animation:animation:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 +| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.0-beta01 +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.1 | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.0-beta01 (*) -| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.1 (*) +| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.0 -| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.0 +| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.2 +| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview:1.6.11 | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview-android:1.6.11 @@ -871,7 +871,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | \--- io.coil-kt.coil3:coil-android:3.0.4 | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 | | | | | | \--- io.coil-kt.coil3:coil-core-android:3.0.4 -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.appcompat:appcompat-resources:1.7.0 | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -899,11 +899,11 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 | | | | | \--- io.coil-kt.coil3:coil-compose-core-android:3.0.4 | | | | | +--- com.google.accompanist:accompanist-drawablepainter:0.36.0 -| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.1.21 (*) | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) @@ -924,52 +924,52 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 (*) | | | | | | | | +--- androidx.loader:loader:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.1 | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.0-beta01 (*) +| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.1 (*) | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.4.1 (*) -| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | +--- androidx.viewpager:viewpager:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) @@ -1099,160 +1099,160 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 -| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0-beta01 +| | | | +--- androidx.navigation:navigation-compose:2.9.0 +| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0 | | | | | +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.0-beta01 +| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 +| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 +| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0 | | | | | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 +| | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0-beta01 -> 1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.1 +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 @@ -1273,7 +1273,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | \--- co.touchlab:stately-concurrent-collections-jvm:2.1.0 | | | | | +--- co.touchlab:stately-concurrency:2.1.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 | | | | \--- io.insert-koin:koin-compose-viewmodel-jvm:4.0.0 @@ -1281,15 +1281,15 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- io.insert-koin:koin-core-viewmodel:4.0.0 | | | | | \--- io.insert-koin:koin-core-viewmodel-jvm:4.0.0 | | | | | +--- io.insert-koin:koin-core:4.0.0 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.1 (*) | | | | | +--- org.jetbrains.androidx.core:core-bundle:1.0.0 | | | | | | \--- org.jetbrains.androidx.core:core-bundle-android-debug:1.0.0 | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.1 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-core:4.0.0 (*) | | | +--- com.michael-bull.kotlin-result:kotlin-result:2.0.1 (*) @@ -1322,8 +1322,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1339,8 +1339,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | +--- dev.gitlive:firebase-common:2.1.0 (*) | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | +--- io.insert-koin:koin-annotations:1.4.0 (*) | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1350,30 +1350,30 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | +--- project :modules:library-ui-shared -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 | | | +--- androidx.compose.material:material-icons-extended:1.7.6 | | | | \--- androidx.compose.material:material-icons-extended-android:1.7.6 | | | | \--- androidx.compose.material:material-icons-core:1.7.6 | | | | \--- androidx.compose.material:material-icons-core-android:1.7.6 -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 | | | | +--- androidx.compose.material:material-icons-core:1.7.6 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) -| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) +| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 (*) | | +--- io.coil-kt.coil3:coil-compose:3.0.4 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1388,27 +1388,27 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) | | +--- project :modules:library-navigation-api (*) -| | +--- org.jetbrains.compose.components:components-resources:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 -| | | +--- androidx.compose.material:material:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -| | | | +--- androidx.compose.material:material-ripple:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 +| | | +--- androidx.compose.material:material:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.2 +| | | | +--- androidx.compose.material:material-ripple:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 | | | +--- androidx.compose.material3:material3:1.3.2 @@ -1417,69 +1417,69 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) | | | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.6 (*) -| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.0-beta01 +| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.0 | | | | \--- org.jetbrains.compose.ui:ui-backhandler-android-debug:1.8.0 | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 (*) -| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 (*) +| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) | | +--- com.eygraber:compose-placeholder:1.0.8 | | | \--- com.eygraber:compose-placeholder-android:1.0.8 | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| +--- org.jetbrains.compose.material:material:1.8.0 (*) -| +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| +--- org.jetbrains.compose.material:material:1.8.2 (*) +| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | +--- project :modules:feature-account -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 | | | +--- androidx.sqlite:sqlite-framework:2.4.0 @@ -1503,8 +1503,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1516,7 +1516,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) | | +--- project :modules:feature-account-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1525,8 +1525,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1537,7 +1537,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- project :modules:library-network-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- com.apollographql.apollo:apollo-runtime:4.3.0 | | | | | \--- com.apollographql.apollo:apollo-runtime-android-debug:4.3.0 @@ -1587,8 +1587,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1610,7 +1610,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:feature-common-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1619,8 +1619,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1633,7 +1633,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- project :modules:library-network-api (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-navigation -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1642,8 +1642,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1653,7 +1653,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:feature-launches-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1662,8 +1662,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1676,7 +1676,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- project :modules:library-network-api (*) | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | +--- project :modules:feature-login-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1685,8 +1685,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1701,7 +1701,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-network-api (*) | | +--- project :modules:library-network -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-network-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1710,8 +1710,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1868,7 +1868,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-account-api (*) | +--- project :modules:feature-common -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1877,8 +1877,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1889,10 +1889,10 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -1901,7 +1901,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-electricity -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1910,8 +1910,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1922,17 +1922,17 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- io.github.koalaplot:koalaplot-core:0.6.3 | | | \--- io.github.koalaplot:koalaplot-core-android:0.6.3 -| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.material3:material3:1.6.11 -> 1.8.0 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.1 (*) | | +--- io.github.thechance101:chart:Beta-0.0.5 @@ -1957,23 +1957,23 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | | | +--- androidx.emoji2:emoji2:1.4.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.4.0 (c) | | | | +--- androidx.fragment:fragment:1.5.4 -> 1.6.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) | | | | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.1 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | \--- androidx.appcompat:appcompat-resources:1.7.0 (c) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-electricity-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1982,8 +1982,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2001,7 +2001,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-home-api -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2010,8 +2010,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2024,7 +2024,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- project :modules:library-network-api (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 (*) | | +--- project :modules:library-feature (*) @@ -2035,8 +2035,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2047,10 +2047,10 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -2061,7 +2061,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches-api (*) | +--- project :modules:feature-login -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2070,8 +2070,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2082,10 +2082,10 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-common-api (*) | | +--- project :modules:feature-login-api (*) @@ -2096,7 +2096,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-login-api (*) | +--- project :modules:feature-schedules -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2105,8 +2105,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2117,16 +2117,17 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-login-api (*) | | +--- project :modules:feature-schedules-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2135,8 +2136,8 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2159,7 +2160,7 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) +--- androidx.activity:activity-compose:1.10.1 (*) +--- dev.gitlive:firebase-firestore:2.1.0 (*) -+--- org.jetbrains.compose.ui:ui:1.8.0 (*) ++--- org.jetbrains.compose.ui:ui:1.8.2 (*) +--- org.jetbrains.compose.material3:material3:1.8.0 (*) \--- io.insert-koin:koin-android:3.5.3 +--- io.insert-koin:koin-core:3.5.3 -> 4.0.0 (*) @@ -2170,13 +2171,13 @@ debugRuntimeClasspath - Runtime classpath of '/debug'. | +--- androidx.collection:collection-ktx:1.1.0 -> 1.5.0 (*) | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | +--- androidx.fragment:fragment:1.6.2 (*) - | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.0-beta01 (*) - | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 (*) - | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) + | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.1 (*) + | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 (*) + | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.21 (*) | \--- androidx.fragment:fragment:1.6.2 (c) - +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.0-beta01 (*) - +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.0-beta01 (*) + +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.1 (*) + +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.1 (*) \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. diff --git a/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt b/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt index 1afed07..683679c 100644 --- a/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt @@ -15,8 +15,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +--- project :modules:library-test | +--- androidx.test:core-ktx:1.6.1 -| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.0-beta01 +| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 | | | | \--- androidx.annotation:annotation-jvm:1.9.1 | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) @@ -34,19 +34,19 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.10.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | +--- androidx.test:core:1.6.1 | | | +--- androidx.annotation:annotation:1.7.0-beta01 -> 1.9.1 (*) | | | +--- androidx.concurrent:concurrent-futures-ktx:1.1.0 @@ -55,7 +55,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | \--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.4 -> 1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.0-beta01 (*) +| | | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.1 (*) | | | +--- androidx.test:monitor:1.7.1 -> 1.7.2 | | | | +--- androidx.annotation:annotation:1.7.0-beta01 -> 1.9.1 (*) | | | | +--- androidx.tracing:tracing:1.1.0 -> 1.2.0 @@ -110,8 +110,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | | +--- androidx.interpolator:interpolator:1.0.0 | | | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.arch.core:core-common:2.2.0 | | | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -119,7 +119,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | | | | \--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -133,19 +133,19 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | +--- androidx.tracing:tracing:1.2.0 (*) | | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -282,67 +282,67 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | \--- com.squareup.curtains:curtains:1.2.4 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 2.1.21 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 2.1.21 (*) -+--- androidx.compose.ui:ui-tooling:1.8.2 -| \--- androidx.compose.ui:ui-tooling-android:1.8.2 ++--- androidx.compose.ui:ui-tooling:1.8.3 +| \--- androidx.compose.ui:ui-tooling-android:1.8.3 | +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 | | +--- androidx.activity:activity-ktx:1.10.1 | | | +--- androidx.activity:activity:1.10.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 -| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.0-beta01 +| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 +| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 -| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 +| | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-android:1.3.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 @@ -355,80 +355,80 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-io-jvm:1.8.0 (c) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- androidx.tracing:tracing:1.0.0 -> 1.2.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | +--- androidx.activity:activity-compose:1.10.1 (c) | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 +| | | | +--- androidx.savedstate:savedstate:1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) +| | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | +--- androidx.activity:activity:1.10.1 (c) | | | \--- androidx.activity:activity-compose:1.10.1 (c) -| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-android:1.8.2 +| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-android:1.8.3 | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) @@ -436,19 +436,19 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 -| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 +| | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 +| | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (c) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 -| | | \--- androidx.compose.ui:ui-android:1.8.2 +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 +| | | \--- androidx.compose.ui:ui-android:1.8.3 | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 (*) | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) @@ -456,321 +456,321 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | \--- androidx.core:core:1.1.0 -> 1.16.0 (*) | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 -| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 +| | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 -| | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 +| | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 -| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 +| | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 -| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 +| | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- androidx.collection:collection:1.5.0 (c) -| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | +--- androidx.graphics:graphics-path:1.0.1 | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 -| | | | \--- androidx.compose.ui:ui-text-android:1.8.2 +| | | +--- androidx.compose.ui:ui-text:1.8.3 +| | | | \--- androidx.compose.ui:ui-text-android:1.8.3 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | +--- androidx.emoji2:emoji2:1.4.0 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.16.0 (*) -| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | +--- androidx.startup:startup-runtime:1.1.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*) | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.16.0 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.4.0 (*) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) -| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | +--- androidx.activity:activity:1.10.1 (c) | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| +--- androidx.compose.animation:animation:1.8.2 -| | \--- androidx.compose.animation:animation-android:1.8.2 +| +--- androidx.compose.animation:animation:1.8.3 +| | \--- androidx.compose.animation:animation-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | +--- androidx.collection:collection:1.5.0 (*) -| | +--- androidx.compose.animation:animation-core:1.8.2 -| | | \--- androidx.compose.animation:animation-core-android:1.8.2 +| | +--- androidx.compose.animation:animation-core:1.8.3 +| | | \--- androidx.compose.animation:animation-core-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.compose.animation:animation:1.8.2 (c) +| | | +--- androidx.compose.animation:animation:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.8.2 -| | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 +| | +--- androidx.compose.foundation:foundation-layout:1.8.3 +| | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.foundation:foundation:1.8.2 (c) +| | | +--- androidx.compose.foundation:foundation:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- androidx.compose.animation:animation-core:1.8.2 (c) +| | +--- androidx.compose.animation:animation-core:1.8.3 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.material:material:1.0.0 -> 1.8.0 -| | \--- androidx.compose.material:material-android:1.8.0 +| +--- androidx.compose.material:material:1.0.0 -> 1.8.2 +| | \--- androidx.compose.material:material-android:1.8.2 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 -| | | \--- androidx.compose.foundation:foundation-android:1.8.2 +| | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 +| | | \--- androidx.compose.foundation:foundation-android:1.8.3 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation:1.8.2 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | +--- androidx.compose.animation:animation:1.8.3 (*) +| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-text:1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | +--- androidx.core:core:1.13.1 -> 1.16.0 (*) | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) +| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.material:material-ripple:1.8.0 -| | | \--- androidx.compose.material:material-ripple-android:1.8.0 +| | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.material:material-ripple:1.8.2 +| | | \--- androidx.compose.material:material-ripple-android:1.8.2 | | | +--- androidx.collection:collection:1.5.0 (*) -| | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -| | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -| | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) +| | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) +| | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) +| | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -| | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) +| | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.runtime:runtime:1.8.2 (*) -| +--- androidx.compose.ui:ui:1.8.2 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.2 +| +--- androidx.compose.runtime:runtime:1.8.3 (*) +| +--- androidx.compose.ui:ui:1.8.3 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | \--- androidx.compose.ui:ui-util:1.8.2 (c) -| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | \--- androidx.compose.ui:ui-util:1.8.3 (c) +| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-test-manifest:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-test-manifest:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| \--- androidx.compose.ui:ui-util:1.8.2 (c) -+--- androidx.compose.ui:ui-test-manifest:1.8.2 +| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| \--- androidx.compose.ui:ui-util:1.8.3 (c) ++--- androidx.compose.ui:ui-test-manifest:1.8.3 | +--- androidx.activity:activity:1.2.1 -> 1.10.1 (*) -| +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| \--- androidx.compose.ui:ui-util:1.8.2 (c) +| +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| \--- androidx.compose.ui:ui-util:1.8.3 (c) +--- androidx.core:core-ktx:1.16.0 (*) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +--- org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.8 @@ -783,9 +783,9 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 2.1.21 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 +--- project :modules:feature-home-shared -| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 +| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 | | | \--- androidx.annotation:annotation:1.9.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) @@ -859,137 +859,137 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | +--- project :modules:library-feature -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-navigation-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 | | | | \--- com.kizitonwose.calendar:compose-multiplatform-android:2.5.4 | | | | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.6.11 -| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.2 (*) +| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.3 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 | | | | | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.animation:animation:1.8.0 -| | | | | | +--- androidx.compose.animation:animation:1.8.0 -> 1.8.2 (*) -| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 -| | | | | | | | +--- androidx.compose.ui:ui:1.8.0 -> 1.8.2 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.animation:animation:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 +| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.0-beta01 +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.1 | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.0-beta01 (*) -| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.1 (*) +| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.0 -| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.0 +| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.2 +| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview:1.6.11 | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview-android:1.6.11 @@ -1000,7 +1000,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | \--- io.coil-kt.coil3:coil-android:3.0.4 | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 | | | | | | \--- io.coil-kt.coil3:coil-core-android:3.0.4 -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.appcompat:appcompat-resources:1.7.0 | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -1028,11 +1028,11 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 | | | | | \--- io.coil-kt.coil3:coil-compose-core-android:3.0.4 | | | | | +--- com.google.accompanist:accompanist-drawablepainter:0.36.0 -| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.1.21 (*) | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) @@ -1053,52 +1053,52 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 (*) | | | | | | | | +--- androidx.loader:loader:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.1 | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.0-beta01 (*) +| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.1 (*) | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.4.1 (*) -| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | +--- androidx.viewpager:viewpager:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) @@ -1225,160 +1225,160 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 -| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0-beta01 +| | | | +--- androidx.navigation:navigation-compose:2.9.0 +| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0 | | | | | +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.0-beta01 +| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 +| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 +| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0 | | | | | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 +| | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0-beta01 -> 1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.1 +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 @@ -1399,7 +1399,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | \--- co.touchlab:stately-concurrent-collections-jvm:2.1.0 | | | | | +--- co.touchlab:stately-concurrency:2.1.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 | | | | \--- io.insert-koin:koin-compose-viewmodel-jvm:4.0.0 @@ -1407,15 +1407,15 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- io.insert-koin:koin-core-viewmodel:4.0.0 | | | | | \--- io.insert-koin:koin-core-viewmodel-jvm:4.0.0 | | | | | +--- io.insert-koin:koin-core:4.0.0 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.1 (*) | | | | | +--- org.jetbrains.androidx.core:core-bundle:1.0.0 | | | | | | \--- org.jetbrains.androidx.core:core-bundle-android-debug:1.0.0 | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.1 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-core:4.0.0 (*) | | | +--- com.michael-bull.kotlin-result:kotlin-result:2.0.1 (*) @@ -1447,8 +1447,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1464,8 +1464,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | +--- dev.gitlive:firebase-common:2.1.0 (*) | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | +--- io.insert-koin:koin-annotations:1.4.0 (*) | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1475,30 +1475,30 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | +--- project :modules:library-ui-shared -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 | | | +--- androidx.compose.material:material-icons-extended:1.7.6 | | | | \--- androidx.compose.material:material-icons-extended-android:1.7.6 | | | | \--- androidx.compose.material:material-icons-core:1.7.6 | | | | \--- androidx.compose.material:material-icons-core-android:1.7.6 -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 | | | | +--- androidx.compose.material:material-icons-core:1.7.6 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) -| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) +| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 (*) | | +--- io.coil-kt.coil3:coil-compose:3.0.4 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1513,27 +1513,27 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) | | +--- project :modules:library-navigation-api (*) -| | +--- org.jetbrains.compose.components:components-resources:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 -| | | +--- androidx.compose.material:material:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -| | | | +--- androidx.compose.material:material-ripple:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 +| | | +--- androidx.compose.material:material:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.2 +| | | | +--- androidx.compose.material:material-ripple:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 | | | +--- androidx.compose.material3:material3:1.3.2 @@ -1542,69 +1542,69 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) | | | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.6 (*) -| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.0-beta01 +| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.0 | | | | \--- org.jetbrains.compose.ui:ui-backhandler-android-debug:1.8.0 | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 (*) -| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 (*) +| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) | | +--- com.eygraber:compose-placeholder:1.0.8 | | | \--- com.eygraber:compose-placeholder-android:1.0.8 | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| +--- org.jetbrains.compose.material:material:1.8.0 (*) -| +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| +--- org.jetbrains.compose.material:material:1.8.2 (*) +| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | +--- project :modules:feature-account -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 | | | +--- androidx.sqlite:sqlite-framework:2.4.0 @@ -1628,8 +1628,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1641,7 +1641,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) | | +--- project :modules:feature-account-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1650,8 +1650,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1662,7 +1662,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- project :modules:library-network-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- com.apollographql.apollo:apollo-runtime:4.3.0 (*) | | | | +--- com.apollographql.apollo:apollo-adapters:4.3.0 @@ -1687,8 +1687,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1710,7 +1710,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:feature-common-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1719,8 +1719,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1733,7 +1733,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- project :modules:library-network-api (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-navigation -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1742,8 +1742,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1753,7 +1753,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:feature-launches-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1762,8 +1762,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1776,7 +1776,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- project :modules:library-network-api (*) | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | +--- project :modules:feature-login-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1785,8 +1785,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1801,7 +1801,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-network-api (*) | | +--- project :modules:library-network -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-network-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1810,8 +1810,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1968,7 +1968,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-account-api (*) | +--- project :modules:feature-common -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1977,8 +1977,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1989,10 +1989,10 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -2001,7 +2001,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-electricity -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2010,8 +2010,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2022,17 +2022,17 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- io.github.koalaplot:koalaplot-core:0.6.3 | | | \--- io.github.koalaplot:koalaplot-core-android:0.6.3 -| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.material3:material3:1.6.11 -> 1.8.0 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.1 (*) | | +--- io.github.thechance101:chart:Beta-0.0.5 @@ -2057,23 +2057,23 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | | | +--- androidx.emoji2:emoji2:1.4.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.4.0 (c) | | | | +--- androidx.fragment:fragment:1.5.4 -> 1.6.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) | | | | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.1 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | \--- androidx.appcompat:appcompat-resources:1.7.0 (c) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-electricity-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2082,8 +2082,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2101,7 +2101,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-home-api -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2110,8 +2110,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2124,7 +2124,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- project :modules:library-network-api (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 (*) | | +--- project :modules:library-feature (*) @@ -2135,8 +2135,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2147,10 +2147,10 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -2161,7 +2161,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches-api (*) | +--- project :modules:feature-login -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2170,8 +2170,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2182,10 +2182,10 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-common-api (*) | | +--- project :modules:feature-login-api (*) @@ -2196,7 +2196,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-login-api (*) | +--- project :modules:feature-schedules -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2205,8 +2205,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2217,16 +2217,17 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-login-api (*) | | +--- project :modules:feature-schedules-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2235,8 +2236,8 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2259,7 +2260,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) +--- androidx.activity:activity-compose:1.10.1 (*) +--- dev.gitlive:firebase-firestore:2.1.0 (*) -+--- org.jetbrains.compose.ui:ui:1.8.0 (*) ++--- org.jetbrains.compose.ui:ui:1.8.2 (*) +--- org.jetbrains.compose.material3:material3:1.8.0 (*) \--- io.insert-koin:koin-android:3.5.3 +--- io.insert-koin:koin-core:3.5.3 -> 4.0.0 (*) @@ -2270,13 +2271,13 @@ debugUnitTestRuntimeClasspath - Runtime classpath of '/debugUnitTest'. | +--- androidx.collection:collection-ktx:1.1.0 -> 1.5.0 (*) | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | +--- androidx.fragment:fragment:1.6.2 (*) - | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.0-beta01 (*) - | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 (*) - | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) + | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.1 (*) + | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 (*) + | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.21 (*) | \--- androidx.fragment:fragment:1.6.2 (c) - +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.0-beta01 (*) - +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.0-beta01 (*) + +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.1 (*) + +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.1 (*) \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. diff --git a/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt b/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt index 1468f7a..9cf892e 100644 --- a/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt @@ -31,8 +31,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | +--- androidx.interpolator:interpolator:1.0.0 | | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.0-beta01 +| | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.arch.core:core-common:2.2.0 | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -40,8 +40,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | \--- androidx.arch.core:core-common:2.2.0 (*) | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 -| | | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.0-beta01 +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 +| | | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 @@ -55,19 +55,19 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.10.1 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -82,19 +82,19 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | +--- androidx.tracing:tracing:1.2.0 (*) | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -117,28 +117,28 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 2.1.21 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 +--- project :modules:feature-home-shared -| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.0-beta01 +| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.core:core-viewtree:1.0.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 | | | \--- androidx.annotation:annotation:1.9.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) @@ -221,20 +221,20 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | +--- project :modules:library-feature -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-navigation-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 | | | | \--- com.kizitonwose.calendar:compose-multiplatform-android:2.5.4 | | | | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.6.11 -| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.2 -| | | | | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 +| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.3 +| | | | | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -| | | | | | \--- androidx.compose.runtime:runtime-android:1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.3 +| | | | | | \--- androidx.compose.runtime:runtime-android:1.8.3 | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) @@ -242,158 +242,158 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) +| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24 -> 2.1.21 (c) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | \--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | \--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 | | | | | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.foundation:foundation:1.8.0 -> 1.8.2 -| | | | | | \--- androidx.compose.foundation:foundation-android:1.8.2 +| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 +| | | | | | \--- androidx.compose.foundation:foundation-android:1.8.3 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | +--- androidx.compose.animation:animation:1.8.2 -| | | | | | | \--- androidx.compose.animation:animation-android:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.3 +| | | | | | | \--- androidx.compose.animation:animation-android:1.8.3 | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -| | | | | | | | \--- androidx.compose.animation:animation-core-android:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.3 +| | | | | | | | \--- androidx.compose.animation:animation-core-android:1.8.3 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -| | | | | | | | | \--- androidx.compose.ui:ui-android:1.8.2 +| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 +| | | | | | | | | \--- androidx.compose.ui:ui-android:1.8.3 | | | | | | | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 | | | | | | | | | | +--- androidx.activity:activity:1.10.1 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) | | | | | | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-beta01 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 +| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.1 | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 | | | | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | | | | | | | \--- androidx.savedstate:savedstate-android:1.3.0-beta01 -| | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| | | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 +| | | | | | | | | | | | | \--- androidx.savedstate:savedstate-android:1.3.0 | | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | | | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) | | | | | | | | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) +| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | | | | +--- androidx.tracing:tracing:1.0.0 -> 1.2.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | +--- androidx.activity:activity-compose:1.10.1 (c) | | | | | | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.0-beta01 +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | +--- androidx.activity:activity:1.10.1 (c) | | | | | | | | | | \--- androidx.activity:activity-compose:1.10.1 (c) @@ -403,320 +403,320 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | | | | | | \--- androidx.core:core:1.1.0 -> 1.16.0 (*) | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -| | | | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 +| | | | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -| | | | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 +| | | | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 | | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -| | | | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 +| | | | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 | | | | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | | | | | | | \--- androidx.collection:collection:1.5.0 (c) -| | | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | | +--- androidx.graphics:graphics-path:1.0.1 | | | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | | | | | | | +--- androidx.emoji2:emoji2:1.4.0 | | | | | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | | | | +--- androidx.core:core:1.3.0 -> 1.16.0 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.0-beta01 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.1 | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | | | | | | | +--- androidx.startup:startup-runtime:1.1.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*) | | | | | | | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | | | | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.16.0 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) | | | | | | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.4.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.0-beta01 -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) | | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | | | +--- androidx.compose.animation:animation:1.8.2 (c) +| | | | | | | | +--- androidx.compose.animation:animation:1.8.3 (c) | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -| | | | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 +| | | | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) +| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- androidx.compose.foundation:foundation:1.8.2 (c) +| | | | | | | | +--- androidx.compose.foundation:foundation:1.8.3 (c) | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 (c) +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.3 (c) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | +--- androidx.core:core:1.13.1 -> 1.16.0 (*) | | | | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) +| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | +--- org.jetbrains.compose.animation:animation:1.8.0 -| | | | | | +--- androidx.compose.animation:animation:1.8.0 -> 1.8.2 (*) -| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 -| | | | | | | | +--- androidx.compose.ui:ui:1.8.0 -> 1.8.2 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.animation:animation:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 +| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.0-beta01 +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.1 | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.0-beta01 (*) -| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.1 (*) +| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.0 -| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.0 +| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.2 +| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview:1.6.11 | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview-android:1.6.11 @@ -727,7 +727,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | \--- io.coil-kt.coil3:coil-android:3.0.4 | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 | | | | | | \--- io.coil-kt.coil3:coil-core-android:3.0.4 -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.appcompat:appcompat-resources:1.7.0 | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -757,11 +757,11 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 | | | | | \--- io.coil-kt.coil3:coil-compose-core-android:3.0.4 | | | | | +--- com.google.accompanist:accompanist-drawablepainter:0.36.0 -| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.1.21 (*) | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) @@ -782,52 +782,52 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 (*) | | | | | | | | +--- androidx.loader:loader:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.1 | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.0-beta01 (*) +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.1 (*) | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.4.1 (*) -| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | +--- androidx.viewpager:viewpager:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) @@ -957,23 +957,23 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 -| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0-beta01 +| | | | +--- androidx.navigation:navigation-compose:2.9.0 +| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0 | | | | | +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) @@ -981,150 +981,150 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | | \--- androidx.activity:activity:1.10.1 (c) | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.0-beta01 +| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0-beta01 +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 +| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 +| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0 | | | | | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 +| | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0-beta01 -> 1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.1 +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 @@ -1145,7 +1145,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | \--- co.touchlab:stately-concurrent-collections-jvm:2.1.0 | | | | | +--- co.touchlab:stately-concurrency:2.1.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 | | | | \--- io.insert-koin:koin-compose-viewmodel-jvm:4.0.0 @@ -1153,15 +1153,15 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- io.insert-koin:koin-core-viewmodel:4.0.0 | | | | | \--- io.insert-koin:koin-core-viewmodel-jvm:4.0.0 | | | | | +--- io.insert-koin:koin-core:4.0.0 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.1 (*) | | | | | +--- org.jetbrains.androidx.core:core-bundle:1.0.0 | | | | | | \--- org.jetbrains.androidx.core:core-bundle-android:1.0.0 | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.1 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-core:4.0.0 (*) | | | +--- com.michael-bull.kotlin-result:kotlin-result:2.0.1 (*) @@ -1197,8 +1197,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1214,8 +1214,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | +--- dev.gitlive:firebase-common:2.1.0 (*) | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | +--- io.insert-koin:koin-annotations:1.4.0 (*) | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1225,30 +1225,30 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | +--- project :modules:library-ui-shared -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 | | | +--- androidx.compose.material:material-icons-extended:1.7.6 | | | | \--- androidx.compose.material:material-icons-extended-android:1.7.6 | | | | \--- androidx.compose.material:material-icons-core:1.7.6 | | | | \--- androidx.compose.material:material-icons-core-android:1.7.6 -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 | | | | +--- androidx.compose.material:material-icons-core:1.7.6 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) -| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) +| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 (*) | | +--- io.coil-kt.coil3:coil-compose:3.0.4 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1263,52 +1263,52 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) | | +--- project :modules:library-navigation-api (*) -| | +--- org.jetbrains.compose.components:components-resources:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 -| | | +--- androidx.compose.material:material:1.8.0 -| | | | \--- androidx.compose.material:material-android:1.8.0 +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 +| | | +--- androidx.compose.material:material:1.8.2 +| | | | \--- androidx.compose.material:material-android:1.8.2 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | | | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.material:material-ripple:1.8.0 -| | | | | \--- androidx.compose.material:material-ripple-android:1.8.0 +| | | | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.material:material-ripple:1.8.2 +| | | | | \--- androidx.compose.material:material-ripple-android:1.8.2 | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) +| | | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -| | | | +--- androidx.compose.material:material-ripple:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.2 +| | | | +--- androidx.compose.material:material-ripple:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 | | | +--- androidx.compose.material3:material3:1.3.2 @@ -1317,69 +1317,69 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) | | | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.6 (*) -| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.0-beta01 +| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.0 | | | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.0 | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 (*) -| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 (*) +| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) | | +--- com.eygraber:compose-placeholder:1.0.8 | | | \--- com.eygraber:compose-placeholder-android:1.0.8 | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| +--- org.jetbrains.compose.material:material:1.8.0 (*) -| +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| +--- org.jetbrains.compose.material:material:1.8.2 (*) +| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | +--- project :modules:feature-account -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 | | | +--- androidx.sqlite:sqlite-framework:2.4.0 @@ -1403,8 +1403,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1416,7 +1416,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) | | +--- project :modules:feature-account-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1425,8 +1425,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1437,7 +1437,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- project :modules:library-network-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- com.apollographql.apollo:apollo-runtime:4.3.0 | | | | | \--- com.apollographql.apollo:apollo-runtime-android:4.3.0 @@ -1487,8 +1487,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1510,7 +1510,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:feature-common-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1519,8 +1519,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1533,7 +1533,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- project :modules:library-network-api (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-navigation -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1542,8 +1542,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1553,7 +1553,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:feature-launches-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1562,8 +1562,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1576,7 +1576,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- project :modules:library-network-api (*) | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | +--- project :modules:feature-login-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1585,8 +1585,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1601,7 +1601,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-network-api (*) | | +--- project :modules:library-network -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-network-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1610,8 +1610,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1768,7 +1768,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-account-api (*) | +--- project :modules:feature-common -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1777,8 +1777,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1789,10 +1789,10 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -1801,7 +1801,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-electricity -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1810,8 +1810,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1822,17 +1822,17 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- io.github.koalaplot:koalaplot-core:0.6.3 | | | \--- io.github.koalaplot:koalaplot-core-android:0.6.3 -| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.material3:material3:1.6.11 -> 1.8.0 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.1 (*) | | +--- io.github.thechance101:chart:Beta-0.0.5 @@ -1857,23 +1857,23 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | | | +--- androidx.emoji2:emoji2:1.4.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.4.0 (c) | | | | +--- androidx.fragment:fragment:1.5.4 -> 1.6.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) | | | | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.1 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | \--- androidx.appcompat:appcompat-resources:1.7.0 (c) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-electricity-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1882,8 +1882,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1901,7 +1901,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-home-api -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1910,8 +1910,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1924,7 +1924,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- project :modules:library-network-api (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 (*) | | +--- project :modules:library-feature (*) @@ -1935,8 +1935,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1947,10 +1947,10 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -1961,7 +1961,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches-api (*) | +--- project :modules:feature-login -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1970,8 +1970,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1982,10 +1982,10 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-common-api (*) | | +--- project :modules:feature-login-api (*) @@ -1996,7 +1996,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-login-api (*) | +--- project :modules:feature-schedules -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2005,8 +2005,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2017,16 +2017,17 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-login-api (*) | | +--- project :modules:feature-schedules-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2035,8 +2036,8 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2059,7 +2060,7 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) +--- androidx.activity:activity-compose:1.10.1 (*) +--- dev.gitlive:firebase-firestore:2.1.0 (*) -+--- org.jetbrains.compose.ui:ui:1.8.0 (*) ++--- org.jetbrains.compose.ui:ui:1.8.2 (*) +--- org.jetbrains.compose.material3:material3:1.8.0 (*) +--- io.insert-koin:koin-android:3.5.3 | +--- io.insert-koin:koin-core:3.5.3 -> 4.0.0 (*) @@ -2070,50 +2071,50 @@ releaseRuntimeClasspath - Runtime classpath of '/release'. | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.5.0 (*) | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | +--- androidx.fragment:fragment:1.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.21 (*) | | \--- androidx.fragment:fragment:1.6.2 (c) -| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.0-beta01 (*) -| +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.1 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) -+--- androidx.compose.ui:ui-tooling:1.8.2 -| \--- androidx.compose.ui:ui-tooling-android:1.8.2 ++--- androidx.compose.ui:ui-tooling:1.8.3 +| \--- androidx.compose.ui:ui-tooling-android:1.8.3 | +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 (*) | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| +--- androidx.compose.animation:animation:1.8.2 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.8.0 (*) -| +--- androidx.compose.runtime:runtime:1.8.2 (*) -| +--- androidx.compose.ui:ui:1.8.2 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.2 +| +--- androidx.compose.animation:animation:1.8.3 (*) +| +--- androidx.compose.material:material:1.0.0 -> 1.8.2 (*) +| +--- androidx.compose.runtime:runtime:1.8.3 (*) +| +--- androidx.compose.ui:ui:1.8.3 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.8.3 | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (*) +| | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | +--- androidx.compose.ui:ui:1.8.3 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- androidx.compose.ui:ui:1.8.2 (c) -| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | +--- androidx.compose.ui:ui:1.8.3 (c) +| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (*) -| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| +--- androidx.compose.ui:ui:1.8.2 (c) -| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| +--- androidx.compose.ui:ui-text:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| +--- androidx.compose.ui:ui-util:1.8.2 (c) +| +--- androidx.compose.ui:ui:1.8.3 (c) +| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.ui:ui-text:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| +--- androidx.compose.ui:ui-util:1.8.3 (c) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) diff --git a/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt b/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt index 8b314c1..7d61120 100644 --- a/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt @@ -15,8 +15,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +--- project :modules:library-test | +--- androidx.test:core-ktx:1.6.1 -| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.0-beta01 +| | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.1 +| | | \--- androidx.lifecycle:lifecycle-common-jvm:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 | | | | \--- androidx.annotation:annotation-jvm:1.9.1 | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) @@ -34,19 +34,19 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.10.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | +--- org.jspecify:jspecify:1.0.0 -| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | +--- androidx.test:core:1.6.1 | | | +--- androidx.annotation:annotation:1.7.0-beta01 -> 1.9.1 (*) | | | +--- androidx.concurrent:concurrent-futures-ktx:1.1.0 @@ -55,7 +55,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | \--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.4 -> 1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.0-beta01 (*) +| | | +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.9.1 (*) | | | +--- androidx.test:monitor:1.7.1 -> 1.7.2 | | | | +--- androidx.annotation:annotation:1.7.0-beta01 -> 1.9.1 (*) | | | | +--- androidx.tracing:tracing:1.1.0 -> 1.2.0 @@ -110,8 +110,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | | +--- androidx.interpolator:interpolator:1.0.0 | | | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.arch.core:core-common:2.2.0 | | | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -119,7 +119,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | | | | \--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -133,19 +133,19 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | +--- androidx.tracing:tracing:1.2.0 (*) | | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) @@ -252,28 +252,28 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 2.1.21 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 +--- project :modules:feature-home-shared -| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 -| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.0-beta01 +| +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 +| | | \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.1 | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | +--- androidx.core:core-viewtree:1.0.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 +| | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 | | | \--- androidx.annotation:annotation:1.9.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) @@ -356,20 +356,20 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | +--- project :modules:library-feature -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-navigation-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 | | | | \--- com.kizitonwose.calendar:compose-multiplatform-android:2.5.4 | | | | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.6.11 -| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.2 -| | | | | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 +| | | | | \--- androidx.compose.ui:ui-tooling-preview:1.6.7 -> 1.8.3 +| | | | | \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -| | | | | | \--- androidx.compose.runtime:runtime-android:1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.3 +| | | | | | \--- androidx.compose.runtime:runtime-android:1.8.3 | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) @@ -377,158 +377,158 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) +| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24 -> 2.1.21 (c) -| | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | \--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | \--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 | | | | | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 -| | | | | +--- androidx.compose.foundation:foundation:1.8.0 -> 1.8.2 -| | | | | | \--- androidx.compose.foundation:foundation-android:1.8.2 +| | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 +| | | | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 +| | | | | | \--- androidx.compose.foundation:foundation-android:1.8.3 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | +--- androidx.compose.animation:animation:1.8.2 -| | | | | | | \--- androidx.compose.animation:animation-android:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.3 +| | | | | | | \--- androidx.compose.animation:animation-android:1.8.3 | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -| | | | | | | | \--- androidx.compose.animation:animation-core-android:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.3 +| | | | | | | | \--- androidx.compose.animation:animation-core-android:1.8.3 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -| | | | | | | | | \--- androidx.compose.ui:ui-android:1.8.2 +| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 +| | | | | | | | | \--- androidx.compose.ui:ui-android:1.8.3 | | | | | | | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 | | | | | | | | | | +--- androidx.activity:activity:1.10.1 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) | | | | | | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.0-beta01 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 +| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.1 | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 | | | | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | | | | | | | \--- androidx.savedstate:savedstate-android:1.3.0-beta01 -| | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| | | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 +| | | | | | | | | | | | | \--- androidx.savedstate:savedstate-android:1.3.0 | | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | | | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) | | | | | | | | | | | | | +--- androidx.core:core-viewtree:1.0.0 (*) -| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) +| | | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) -| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) +| | | | | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | | | | +--- androidx.tracing:tracing:1.0.0 -> 1.2.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | | +--- androidx.activity:activity-compose:1.10.1 (c) | | | | | | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.0-beta01 +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (c) +| | | | | | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | | | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | +--- androidx.activity:activity:1.10.1 (c) | | | | | | | | | | \--- androidx.activity:activity-compose:1.10.1 (c) @@ -538,320 +538,320 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | | | | | \--- androidx.core:core:1.1.0 -> 1.16.0 (*) | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -| | | | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 +| | | | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -| | | | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 +| | | | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 | | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -| | | | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 +| | | | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 | | | | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) | | | | | | | | | | | | \--- androidx.collection:collection:1.5.0 (c) -| | | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | | +--- androidx.graphics:graphics-path:1.0.1 | | | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -| | | | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 +| | | | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.3 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | | | | | | | +--- androidx.emoji2:emoji2:1.4.0 | | | | | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) | | | | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | | | | +--- androidx.core:core:1.3.0 -> 1.16.0 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.0-beta01 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.1 | | | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) | | | | | | | | | | | | +--- androidx.startup:startup-runtime:1.1.1 (*) | | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) | | | | | | | | | | | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*) | | | | | | | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.16.0 (*) | | | | | | | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | | | | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.16.0 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) | | | | | | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.4.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.0-beta01 -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 | | | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) | | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.1 (*) | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -| | | | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) -| | | | | | | | +--- androidx.compose.animation:animation:1.8.2 (c) +| | | | | | | | +--- androidx.compose.animation:animation:1.8.3 (c) | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -| | | | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 +| | | | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) +| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) +| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | | +--- androidx.core:core:1.7.0 -> 1.16.0 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- androidx.compose.foundation:foundation:1.8.2 (c) +| | | | | | | | +--- androidx.compose.foundation:foundation:1.8.3 (c) | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) +| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 (c) +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.3 (c) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) +| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) | | | | | | +--- androidx.core:core:1.13.1 -> 1.16.0 (*) | | | | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) +| | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | | +--- org.jetbrains.compose.animation:animation:1.8.0 -| | | | | | +--- androidx.compose.animation:animation:1.8.0 -> 1.8.2 (*) -| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -| | | | | | | +--- androidx.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 -| | | | | | | | +--- androidx.compose.ui:ui:1.8.0 -> 1.8.2 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.animation:animation:1.8.2 +| | | | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 +| | | | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 +| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.0-beta01 +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 -> 2.9.1 | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 -| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.0-beta01 (*) -| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 -| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 -> 2.9.1 (*) +| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 +| | | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 -| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.0 -> 1.8.2 (*) -| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 +| | | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) +| | | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) -| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 +| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 +| | | | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) +| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.0 -| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.0 +| | | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.components:components-resources:1.6.11 -> 1.8.2 +| | | | | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview:1.6.11 | | | | \--- org.jetbrains.compose.components:components-ui-tooling-preview-android:1.6.11 @@ -862,7 +862,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | \--- io.coil-kt.coil3:coil-android:3.0.4 | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 | | | | | | \--- io.coil-kt.coil3:coil-core-android:3.0.4 -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) | | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | | +--- androidx.appcompat:appcompat-resources:1.7.0 | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -890,11 +890,11 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 | | | | | \--- io.coil-kt.coil3:coil-compose-core-android:3.0.4 | | | | | +--- com.google.accompanist:accompanist-drawablepainter:0.36.0 -| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.1.21 (*) | | | | | +--- io.coil-kt.coil3:coil-core:3.0.4 (*) -| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) @@ -915,52 +915,52 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.4.1 (*) | | | | | | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) | | | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.0-beta01 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.1 (*) | | | | | | | | +--- androidx.loader:loader:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) -| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.0-beta01 +| | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.1 | | | | | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) | | | | | | | | | | +--- androidx.arch.core:core-runtime:2.2.0 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (*) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | | | | | +--- org.jspecify:jspecify:1.0.0 -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.0-beta01 (*) +| | | | | | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.9.1 (*) | | | | | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.4.1 (*) -| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | | | +--- androidx.viewpager:viewpager:1.0.0 | | | | | | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) | | | | | | | | | +--- androidx.core:core:1.0.0 -> 1.16.0 (*) @@ -1087,23 +1087,23 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 -> 1.10.1 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 -| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0-beta01 +| | | | +--- androidx.navigation:navigation-compose:2.9.0 +| | | | | \--- androidx.navigation:navigation-compose-android:2.9.0 | | | | | +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) | | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- androidx.activity:activity-ktx:1.10.1 (c) @@ -1111,150 +1111,150 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | | \--- androidx.activity:activity:1.10.1 (c) | | | | | +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) | | | | | +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.0-beta01 -| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.0-beta01 +| | | | | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 +| | | | | | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0-beta01 +| | | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 +| | | | | | \--- androidx.navigation:navigation-common-android:2.9.0 | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) | | | | | | +--- androidx.profileinstaller:profileinstaller:1.4.0 -> 1.4.1 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 -| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0-beta01 +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 +| | | | | | \--- androidx.navigation:navigation-runtime-android:2.9.0 | | | | | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) | | | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.16.0 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.0-beta01 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | | +--- androidx.navigation:navigation-compose:2.9.0-beta01 (c) +| | | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | | +--- androidx.navigation:navigation-compose:2.9.0 (c) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0-beta01 -| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) +| | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 +| | | | | | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | | | | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | | | | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) | | | | | | +--- androidx.core:core-ktx:1.13.1 -> 1.16.0 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (c) -| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0-beta01 (c) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | +--- androidx.savedstate:savedstate:1.3.0 (c) +| | | | | | \--- androidx.savedstate:savedstate-ktx:1.3.0 (c) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.1 (*) | | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (c) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (c) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (c) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (c) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 -| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 -| | | | | | | +--- androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 +| | | | | | | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) +| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) -| | | | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) +| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-common:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta01 +| | | | +--- org.jetbrains.androidx.navigation:navigation-runtime:2.9.0-beta03 | | | | | +--- androidx.annotation:annotation:1.9.1 (*) | | | | | +--- androidx.collection:collection:1.5.0-beta01 -> 1.5.0 (*) -| | | | | +--- androidx.navigation:navigation-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) +| | | | | +--- androidx.navigation:navigation-runtime:2.9.0 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.navigation:navigation-common:2.9.0-beta03 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.0-beta01 -| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.0-beta01 (*) -| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | +--- org.jetbrains.androidx.savedstate:savedstate-compose:1.3.1 +| | | | | +--- androidx.savedstate:savedstate-compose:1.3.0 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.3.1 (*) +| | | | | \--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.0 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 @@ -1275,7 +1275,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | \--- co.touchlab:stately-concurrent-collections-jvm:2.1.0 | | | | | +--- co.touchlab:stately-concurrency:2.1.0 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 | | | | \--- io.insert-koin:koin-compose-viewmodel-jvm:4.0.0 @@ -1283,15 +1283,15 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- io.insert-koin:koin-core-viewmodel:4.0.0 | | | | | \--- io.insert-koin:koin-core-viewmodel-jvm:4.0.0 | | | | | +--- io.insert-koin:koin-core:4.0.0 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.0-beta01 (*) -| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.0 -> 2.9.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0 -> 2.9.1 (*) | | | | | +--- org.jetbrains.androidx.core:core-bundle:1.0.0 | | | | | | \--- org.jetbrains.androidx.core:core-bundle-android:1.0.0 | | | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.21 (*) -| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.0-beta01 (*) +| | | | | +--- org.jetbrains.androidx.savedstate:savedstate:1.2.0 -> 1.3.1 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0 -> 2.9.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) | | | +--- io.insert-koin:koin-core:4.0.0 (*) | | | +--- com.michael-bull.kotlin-result:kotlin-result:2.0.1 (*) @@ -1323,8 +1323,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1340,8 +1340,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | +--- dev.gitlive:firebase-common:2.1.0 (*) | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | +--- io.insert-koin:koin-annotations:1.4.0 (*) | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1351,30 +1351,30 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | +--- project :modules:library-ui-shared -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 | | | +--- androidx.compose.material:material-icons-extended:1.7.6 | | | | \--- androidx.compose.material:material-icons-extended-android:1.7.6 | | | | \--- androidx.compose.material:material-icons-core:1.7.6 | | | | \--- androidx.compose.material:material-icons-core-android:1.7.6 -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 | | | | +--- androidx.compose.material:material-icons-core:1.7.6 (*) -| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) -| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.0 (*) +| | | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) +| | | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) | | +--- com.kizitonwose.calendar:compose-multiplatform:2.5.4 (*) | | +--- io.coil-kt.coil3:coil-compose:3.0.4 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1389,52 +1389,52 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) | | +--- project :modules:library-navigation-api (*) -| | +--- org.jetbrains.compose.components:components-resources:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 -| | | +--- androidx.compose.material:material:1.8.0 -| | | | \--- androidx.compose.material:material-android:1.8.0 +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 +| | | +--- androidx.compose.material:material:1.8.2 +| | | | \--- androidx.compose.material:material-android:1.8.2 | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -| | | | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.material:material-ripple:1.8.0 -| | | | | \--- androidx.compose.material:material-ripple-android:1.8.0 +| | | | +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.material:material-ripple:1.8.2 +| | | | | \--- androidx.compose.material:material-ripple-android:1.8.2 | | | | | +--- androidx.collection:collection:1.5.0 (*) -| | | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -| | | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) +| | | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) +| | | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) +| | | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | | +--- androidx.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -| | | | +--- androidx.compose.material:material-ripple:1.8.0 (*) -| | | | +--- org.jetbrains.compose.animation:animation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.2 +| | | | +--- androidx.compose.material:material-ripple:1.8.2 (*) +| | | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 | | | +--- androidx.compose.material3:material3:1.3.2 @@ -1443,69 +1443,69 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) | | | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) | | | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) | | | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.6 (*) -| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.0-beta01 +| | | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) +| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (*) -| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0-beta01 (c) -| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0-beta01 (c) -| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.0-beta01 (c) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 (*) -| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 (*) -| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | | +--- org.jetbrains.compose.animation:animation-core:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.material:material-ripple:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.0 | | | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.0 | | | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.0-beta01 (*) -| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 (*) -| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) -| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 -> 2.9.1 (*) +| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.0 -> 1.8.2 (*) +| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-text:1.8.0 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.8.0 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) | | +--- com.eygraber:compose-placeholder:1.0.8 | | | \--- com.eygraber:compose-placeholder-android:1.0.8 | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.2 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.ui:ui-util:1.6.2 -> 1.8.2 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| +--- org.jetbrains.compose.material:material:1.8.0 (*) -| +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| +--- org.jetbrains.compose.material:material:1.8.2 (*) +| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | +--- project :modules:feature-account -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 | | | +--- androidx.sqlite:sqlite-framework:2.4.0 @@ -1529,8 +1529,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1542,7 +1542,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) | | +--- project :modules:feature-account-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1551,8 +1551,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1563,7 +1563,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- project :modules:library-network-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- com.apollographql.apollo:apollo-runtime:4.3.0 (*) | | | | +--- com.apollographql.apollo:apollo-adapters:4.3.0 @@ -1588,8 +1588,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1611,7 +1611,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:feature-common-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1620,8 +1620,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1634,7 +1634,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- project :modules:library-network-api (*) | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-navigation -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-navigation-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1643,8 +1643,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1654,7 +1654,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- io.coil-kt.coil3:coil-compose-core:3.0.4 (*) | | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | | +--- project :modules:feature-launches-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1663,8 +1663,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1677,7 +1677,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- project :modules:library-network-api (*) | | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | | +--- project :modules:feature-login-api -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1686,8 +1686,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1702,7 +1702,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | | +--- project :modules:library-network-api (*) | | +--- project :modules:library-network -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- project :modules:library-network-api (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1711,8 +1711,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1869,7 +1869,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-account-api (*) | +--- project :modules:feature-common -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1878,8 +1878,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1890,10 +1890,10 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -1902,7 +1902,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-electricity -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1911,8 +1911,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -1923,17 +1923,17 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- io.github.koalaplot:koalaplot-core:0.6.3 | | | \--- io.github.koalaplot:koalaplot-core-android:0.6.3 -| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.ui:ui:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.animation:animation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.6.11 -> 1.8.2 (*) | | | +--- org.jetbrains.compose.material3:material3:1.6.11 -> 1.8.0 (*) | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.1 (*) | | +--- io.github.thechance101:chart:Beta-0.0.5 @@ -1958,23 +1958,23 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | | | +--- androidx.emoji2:emoji2:1.4.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.4.0 (c) | | | | +--- androidx.fragment:fragment:1.5.4 -> 1.6.2 (*) -| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.0-beta01 (*) -| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.0-beta01 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) | | | | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.1 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 | | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0-beta01 (*) +| | | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) | | | | \--- androidx.appcompat:appcompat-resources:1.7.0 (c) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.16.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.0 (*) -| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.0 (*) -| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.0 (*) +| | | +--- org.jetbrains.compose.runtime:runtime:1.4.3 -> 1.8.2 (*) +| | | +--- org.jetbrains.compose.foundation:foundation:1.4.3 -> 1.8.2 (*) +| | | \--- org.jetbrains.compose.material:material:1.4.3 -> 1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-electricity-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -1983,8 +1983,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2002,7 +2002,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- project :modules:library-network (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-home-api -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2011,8 +2011,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2025,7 +2025,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- project :modules:library-network-api (*) | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- app.cash.sqldelight:android-driver:2.0.2 (*) | | +--- project :modules:library-feature (*) @@ -2036,8 +2036,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2048,10 +2048,10 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-common-api (*) @@ -2062,7 +2062,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-launches-api (*) | +--- project :modules:feature-login -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2071,8 +2071,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2083,10 +2083,10 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-common-api (*) | | +--- project :modules:feature-login-api (*) @@ -2097,7 +2097,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) | +--- project :modules:feature-login-api (*) | +--- project :modules:feature-schedules -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | +--- project :modules:library-feature (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2106,8 +2106,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2118,16 +2118,17 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- io.coil-kt.coil3:coil-network-ktor3:3.0.4 (*) | | +--- project :modules:library-ui-shared (*) | | +--- org.jetbrains.compose.material3:material3:1.8.0 (*) -| | +--- org.jetbrains.compose.ui:ui:1.8.0 (*) -| | +--- org.jetbrains.compose.foundation:foundation:1.8.0 (*) -| | +--- org.jetbrains.compose.material:material:1.8.0 (*) -| | +--- org.jetbrains.compose.runtime:runtime:1.8.0 (*) +| | +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) +| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) +| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) +| | +--- org.jetbrains.compose.material:material:1.8.2 (*) +| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) | | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.0 (*) | | +--- app.cash.sqldelight:coroutines-extensions:2.0.2 (*) | | +--- project :modules:feature-account-api (*) | | +--- project :modules:feature-login-api (*) | | +--- project :modules:feature-schedules-api -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) | | | +--- io.ktor:ktor-client-android:3.0.1 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) @@ -2136,8 +2137,8 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) | | | +--- dev.gitlive:firebase-common:2.1.0 (*) | | | +--- dev.gitlive:firebase-firestore:2.1.0 (*) -| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.0-beta01 (*) -| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta01 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) +| | | +--- org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta03 (*) | | | +--- io.insert-koin:koin-annotations:1.4.0 (*) | | | +--- io.insert-koin:koin-compose:koin -> 4.0.0 (*) | | | +--- io.insert-koin:koin-compose-viewmodel:4.0.0 (*) @@ -2160,7 +2161,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) +--- androidx.activity:activity-compose:1.10.1 (*) +--- dev.gitlive:firebase-firestore:2.1.0 (*) -+--- org.jetbrains.compose.ui:ui:1.8.0 (*) ++--- org.jetbrains.compose.ui:ui:1.8.2 (*) +--- org.jetbrains.compose.material3:material3:1.8.0 (*) +--- io.insert-koin:koin-android:3.5.3 | +--- io.insert-koin:koin-core:3.5.3 -> 4.0.0 (*) @@ -2171,50 +2172,50 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of '/releaseUnitTest'. | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.5.0 (*) | | +--- androidx.core:core-ktx:1.2.0 -> 1.16.0 (*) | | +--- androidx.fragment:fragment:1.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.0-beta01 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) +| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.21 (*) | | \--- androidx.fragment:fragment:1.6.2 (c) -| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.0-beta01 (*) -| +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 -> 2.9.1 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) -\--- androidx.compose.ui:ui-tooling:1.8.2 - \--- androidx.compose.ui:ui-tooling-android:1.8.2 +\--- androidx.compose.ui:ui-tooling:1.8.3 + \--- androidx.compose.ui:ui-tooling-android:1.8.3 +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 (*) +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) - +--- androidx.compose.animation:animation:1.8.2 (*) - +--- androidx.compose.material:material:1.0.0 -> 1.8.0 (*) - +--- androidx.compose.runtime:runtime:1.8.2 (*) - +--- androidx.compose.ui:ui:1.8.2 (*) - +--- androidx.compose.ui:ui-tooling-data:1.8.2 - | \--- androidx.compose.ui:ui-tooling-data-android:1.8.2 + +--- androidx.compose.animation:animation:1.8.3 (*) + +--- androidx.compose.material:material:1.0.0 -> 1.8.2 (*) + +--- androidx.compose.runtime:runtime:1.8.3 (*) + +--- androidx.compose.ui:ui:1.8.3 (*) + +--- androidx.compose.ui:ui-tooling-data:1.8.3 + | \--- androidx.compose.ui:ui-tooling-data-android:1.8.3 | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) | +--- androidx.annotation:annotation-experimental:1.4.1 (*) - | +--- androidx.compose.runtime:runtime:1.8.2 (*) - | +--- androidx.compose.ui:ui:1.8.2 (*) + | +--- androidx.compose.runtime:runtime:1.8.3 (*) + | +--- androidx.compose.ui:ui:1.8.3 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) - | +--- androidx.compose.ui:ui:1.8.2 (c) - | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) - | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) - | +--- androidx.compose.ui:ui-text:1.8.2 (c) - | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) - | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) - | +--- androidx.compose.ui:ui-unit:1.8.2 (c) - | +--- androidx.compose.ui:ui-util:1.8.2 (c) + | +--- androidx.compose.ui:ui:1.8.3 (c) + | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) + | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) + | +--- androidx.compose.ui:ui-text:1.8.3 (c) + | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) + | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) + | +--- androidx.compose.ui:ui-unit:1.8.3 (c) + | +--- androidx.compose.ui:ui-util:1.8.3 (c) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) - +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (*) - +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.0-beta01 (*) - +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0-beta01 (*) + +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (*) + +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) + +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) - +--- androidx.compose.ui:ui:1.8.2 (c) - +--- androidx.compose.ui:ui-geometry:1.8.2 (c) - +--- androidx.compose.ui:ui-graphics:1.8.2 (c) - +--- androidx.compose.ui:ui-text:1.8.2 (c) - +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) - +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) - +--- androidx.compose.ui:ui-unit:1.8.2 (c) - +--- androidx.compose.ui:ui-util:1.8.2 (c) + +--- androidx.compose.ui:ui:1.8.3 (c) + +--- androidx.compose.ui:ui-geometry:1.8.3 (c) + +--- androidx.compose.ui:ui-graphics:1.8.3 (c) + +--- androidx.compose.ui:ui-text:1.8.3 (c) + +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) + +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) + +--- androidx.compose.ui:ui-unit:1.8.3 (c) + +--- androidx.compose.ui:ui-util:1.8.3 (c) \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. diff --git a/build-conventions/build/libs/build-conventions.jar b/build-conventions/build/libs/build-conventions.jar index 68278ed9797795847b9068f7e1a2336daeebaec7..99b6b941a441e8efcef1866887ae2f6ec5bd4bd8 100644 GIT binary patch delta 38757 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 z z&_l%V%tHhi{szw9qL+xX^p%6($xJ%G!X*yB zLJY%RBb?0Fjuift^G&e`-XP@sH;y*^RgD5idw%Cy&gLUVQgqbiMYb2fULdavkcmy+ zI(qQg+u!119)&231%&zVt#Up+5!wB=9gzH_wXgN5&qzrWw%tM>05qaZTR z|Jf~pJh11^(pXX9wIQto`DM;7^);aWvqAd0!m8_~7Rk6xyh-KwHK) z$8`Q?);E;B-*-nQe{$qIzKZ$bn8q!@ zjOBxuzZ~QEAnCVbDj$6P4Ln{jTHqfo_$q)lOqB@mu~{krJ}acc1it9g{3+ufk>9`B zqIG2g2yLTGn9KoIlnWF1V6R+Qzz1;(VI2Ps?w>CF#l9<42tD~TbKBQ>`Gh|kq7-1C z-%|?d{L5sOFp&>FtAwe1`mn=&njpQIZUS&nr50xMSqs%b1F>ijz)B*>efbinh4^_1BRPmnFMJ8NHVvN?!DHe9Hc4-Q@y4^r*;#LEE#PTDC4lIAVo>#fCu`c6a# zZe->>`{=|KlU?{yyoDK==jV$rm--^C3Vt|CymT37J@Ug@ol6SyxUms$RVLv(nXxhW z!#j@J8h=FXlfOVYb=jqaoqW)!72J8esg*VJ@GQ7Azd*gSc|S5k7t9 zp{Y%tkq2Lxw8BD!(fsAM5L}U8bxb68*vrIFT=7n*u$9l6Ssn)wVK^PGIF9|BEnN^M zfW00Nj(nOm%(R8%EMtGs_N^cc=MWZG5cY8-;5y?u57|0{D&jhCD&l@isf3I$R~An5 z@A4`OfAjCkWvm{`E-72V7Ti$gm^qEKNMbXb6qqobL%2ma0l?=>5Qy; z^$@*7^@L*__mzr`F_|Q+E&FnLePIvBrb7cnqL2;vEb-Fcr?7ojG{o&IG!j;QzHuxL?y~{^?EFI3qo25xZM(EM zVGzfBiI;TM7t(br!`u}w%;D4c6}=q#g?NPCq@}Qh&xhN1IaTIX_%f}Pu$|*queIp5DxWg zdn72WgD{tW2$$&^=QHq;9R={8$2tnx{AKuT^|y&++i&)APA6e82N9ZpAdV*>yV`da zZtzzXy9m4Z;8ho#GcFOep;lLXa=EK;lFwQ42X3@--SE}XZun|OcNAny4}A5wc<@(G zd}8c{Qh(G7pN#wy2Zr9rIS9=Xt87{Q;6P8+g`%&EtC+C52F!kOf7(${4(g4rU%0AV+o`yR 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 QoQ~IJL>)PJokG6&KjJ=%i2wiq delta 38757 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 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f260f1d..4491dfc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ aboutlibraries = "11.4.0" agp = "8.1.4" androidCompileSdk = "34" -androidx-compose = "1.8.2" +androidx-compose = "1.8.3" apollo = "4.3.0" coil3 = "3.0.4" coroutines = "1.10.1" @@ -13,13 +13,13 @@ detekt = "1.23.7" diktat = "1.2.5" gitlive = "2.1.0" gradle = "8.1.1" -jetbrains-lifecycle = "2.9.0-beta01" -jetbrains-navigation = "2.9.0-beta01" +jetbrains-lifecycle = "2.9.1" +jetbrains-navigation = "2.9.0-beta03" koin = "4.0.0" koin-ksp = "1.4.0" kotlin = "2.1.21" kotlinpoet = "2.0.0" -kotlin-multiplatform = "1.8.0" +kotlin-multiplatform = "1.8.2" kotlin-result = "2.0.1" kotlinx-datetime="0.6.0" ksp = "2.1.21-2.0.1" diff --git a/iosApp/iosApp.xcworkspace/xcuserdata/javierarroyo.xcuserdatad/UserInterfaceState.xcuserstate b/iosApp/iosApp.xcworkspace/xcuserdata/javierarroyo.xcuserdatad/UserInterfaceState.xcuserstate index 19537866e62a7912ed59e642ee5b8512b4284dd0..585ab2fe5914c6f288ce84e869f2f2829bde9505 100644 GIT binary patch delta 4667 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 YZJAcAm1*VLdTpcjxwflx)Py?!1HSOIvH$=8 diff --git a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityContract.kt b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityContract.kt index 7e1b623..744a10f 100644 --- a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityContract.kt +++ b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityContract.kt @@ -4,14 +4,18 @@ import com.jarroyo.library.network.di.ElectricityData import com.jarroyo.library.ui.shared.ViewEffect import com.jarroyo.library.ui.shared.ViewEvent import com.jarroyo.library.ui.shared.ViewState +import com.kizitonwose.calendar.core.now +import kotlinx.datetime.LocalDate object ElectricityContract { data class State( + val dateSelected: LocalDate = LocalDate.now(), val electricityData: ElectricityData? = null, val loading: Boolean = false, ) : ViewState sealed class Event : ViewEvent { + data class OnDateInputChipSelected(val localDate: LocalDate): Event() data object OnUpButtonClicked: Event() data object OnSwipeToRefresh: Event() } diff --git a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt index 4f1c632..2e80c1b 100644 --- a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt +++ b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityScreen.kt @@ -1,12 +1,15 @@ package com.jarroyo.feature.electricity.ui +import androidx.compose.foundation.horizontalScroll import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.rememberScrollState import androidx.compose.material.ExperimentalMaterialApi import androidx.compose.material.Icon import androidx.compose.material.IconButton @@ -22,6 +25,7 @@ import androidx.compose.material.pullrefresh.PullRefreshIndicator import androidx.compose.material.pullrefresh.pullRefresh import androidx.compose.material.pullrefresh.rememberPullRefreshState import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.InputChip import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.remember @@ -30,15 +34,17 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.PathEffect import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.unit.dp import co.touchlab.kermit.Logger import com.jarroyo.feature.electricity.ui.ElectricityContract.Effect import com.jarroyo.feature.electricity.ui.ElectricityContract.Event import com.jarroyo.feature.electricity.ui.ElectricityContract.State -import com.jarroyo.library.ui.shared.component.EmptyState import com.jarroyo.library.ui.shared.component.EmptyStateWithImage import com.jarroyo.library.ui.shared.component.LocalMainScaffoldPadding +import com.jarroyo.library.ui.shared.component.placeholder import com.jarroyo.library.ui.shared.theme.Spacing +import com.kizitonwose.calendar.core.minusDays import com.kizitonwose.calendar.core.now import io.github.koalaplot.core.ChartLayout import io.github.koalaplot.core.line.LinePlot @@ -111,7 +117,8 @@ private fun ElectricityScreen( verticalArrangement = Arrangement.spacedBy(Spacing.x02), ) { if (state.loading || state.electricityData != null) { - Text(LocalDate.now().toString()) + SelectorDateRow(sendEvent, state) + Text(state.dateSelected.toString()) XYSamplePlot(state) } else { EmptyStateWithImage("Something was wrong getting Electricity data.") @@ -203,3 +210,34 @@ private fun TopAppBar( }, ) } + +@Composable +private fun SelectorDateRow( + sendEvent: (event: Event) -> Unit, + state: State, + placeholder: Boolean = false, +) { + val scrollState = rememberScrollState() + Row( + modifier = Modifier + .horizontalScroll(scrollState) + .fillMaxWidth(), + horizontalArrangement = Arrangement.spacedBy(Spacing.x01), + ) { + for (dayPos in 0..5) { + val localDate = LocalDate.now().minusDays(dayPos) + InputChip( + selected = state.dateSelected == localDate, + onClick = { sendEvent(Event.OnDateInputChipSelected(localDate = localDate)) }, + label = { + Text( + text = localDate.toString(), + overflow = TextOverflow.Ellipsis, + maxLines = 1, + ) + }, + modifier = Modifier.placeholder(placeholder), + ) + } + } +} diff --git a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityViewModel.kt b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityViewModel.kt index 84b06ff..d884e56 100644 --- a/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityViewModel.kt +++ b/modules/feature-electricity/src/commonMain/kotlin/com/jarroyo/feature/electricity/ui/ElectricityViewModel.kt @@ -7,7 +7,6 @@ import com.jarroyo.feature.electricity.ui.ElectricityContract.Event import com.jarroyo.feature.electricity.ui.ElectricityContract.State import com.jarroyo.library.navigation.api.navigator.AppNavigator import com.jarroyo.library.ui.shared.BaseViewModel -import com.kizitonwose.calendar.core.now import kotlinx.coroutines.launch import kotlinx.datetime.LocalDate @@ -16,21 +15,27 @@ class ElectricityViewModel( private val getElectricityDataInteractor: GetElectricityDataInteractor, ) : BaseViewModel() { init { - refreshData() + refreshData(viewState.value.dateSelected) } override fun provideInitialState() = State() override fun handleEvent(event: Event) { when(event) { - is Event.OnSwipeToRefresh -> refreshData() + is Event.OnDateInputChipSelected -> handleOnDateInputChipSelected(event.localDate) + is Event.OnSwipeToRefresh -> refreshData(viewState.value.dateSelected) is Event.OnUpButtonClicked -> appNavigator.navigateUp() } } - private fun refreshData() { + private fun handleOnDateInputChipSelected(localDate: LocalDate) { + updateState { copy(dateSelected = localDate) } + refreshData(localDate) + } + + private fun refreshData(localDate: LocalDate) { viewModelScope.launch { updateState { copy(loading = true) } - val result = getElectricityDataInteractor(startDate = LocalDate.now(), endDate = LocalDate.now()) + val result = getElectricityDataInteractor(startDate = localDate, endDate = localDate) if (result.isOk) { updateState { copy(electricityData = result.value) } } else { diff --git a/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt b/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt index 291b72d..9e746b7 100644 --- a/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt +++ b/modules/feature-launches/src/commonMain/kotlin/com/jarroyo/feature/launches/ui/launchdetail/LaunchDetailScreen.kt @@ -24,7 +24,6 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.remember import androidx.compose.ui.Modifier -import androidx.compose.ui.text.style.TextAlign import coil3.compose.AsyncImage import com.jarroyo.composeapp.library.network.api.graphql.fragment.LaunchFragment import com.jarroyo.composeapp.library.network.api.graphql.fragment.RocketFragment @@ -32,7 +31,6 @@ import com.jarroyo.feature.launches.api.destination.LaunchDestination import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.Effect import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.Event import com.jarroyo.feature.launches.ui.launchdetail.LaunchDetailContract.State -import com.jarroyo.library.ui.shared.component.EmptyState import com.jarroyo.library.ui.shared.component.EmptyStateWithImage import com.jarroyo.library.ui.shared.component.LocalNavHostController import com.jarroyo.library.ui.shared.component.placeholder