From c2ef64b35f43ce6ff89b5fb0c8ec95d0522293e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D1=8B=D1=82=D0=BA=D0=BE=D0=B2=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD?= Date: Thu, 16 Apr 2026 23:11:18 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BA=D0=BE=D0=BD=D0=BA=D0=B8=20=D0=BC?= =?UTF-8?q?=D0=B0=D1=82=D0=B5=D1=80=D0=B8=D0=B0=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle/libs.versions.toml | 7 ++++--- presentation/build.gradle.kts | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index eea6d48..c30fc36 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,7 +6,7 @@ coreKtx = "1.18.0" junit = "4.13.2" junitVersion = "1.3.0" espressoCore = "3.7.0" -kotlinReflect = "2.2.21" +kotlinReflect = "2.3.0" kotlinxCoroutinesCore = "1.10.2" kotlinxSerializationJson = "1.11.0" lifecycleRuntimeKtx = "2.10.0" @@ -27,8 +27,8 @@ jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module- kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlinReflect" } kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutinesCore" } kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" } -navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" } -navigation-hilt-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigation" } +androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" } +androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigation" } timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" } # Yandex @@ -56,6 +56,7 @@ androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecyc androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } androidx-material3 = { group = "androidx.compose.material3", name = "material3" } +androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" } androidx-ui = { group = "androidx.compose.ui", name = "ui" } androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } diff --git a/presentation/build.gradle.kts b/presentation/build.gradle.kts index 8bf1fbf..eed7ce8 100644 --- a/presentation/build.gradle.kts +++ b/presentation/build.gradle.kts @@ -49,8 +49,8 @@ kotlin { dependencies { - implementation(libs.navigation) - implementation(libs.navigation.hilt.compose) + implementation(libs.androidx.navigation.compose) + implementation(libs.androidx.hilt.navigation.compose) // Hilt implementation(libs.dagger.hilt) @@ -70,6 +70,7 @@ dependencies { implementation(libs.androidx.ui.graphics) implementation(libs.androidx.ui.tooling.preview) implementation(libs.androidx.material3) + implementation(libs.androidx.material.icons.extended) testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit)