Impl base app navigation

This commit is contained in:
Shcherbatykh Oleg
2026-02-19 11:56:10 +03:00
parent 40eaa03a67
commit 592d948cd0
39 changed files with 443 additions and 178 deletions

View File

@@ -29,11 +29,6 @@ android {
)
}
}
buildFeatures {
buildConfig = true
}
val jvm = JavaVersion.toVersion(libs.versions.jvmTarget.get())
compileOptions {
sourceCompatibility = jvm
@@ -42,6 +37,10 @@ android {
kotlinOptions {
jvmTarget = jvm.toString()
}
buildFeatures {
buildConfig = true
compose = true
}
}
kapt {
correctErrorTypes = true
@@ -52,20 +51,29 @@ dependencies {
implementation(libs.androidx.activity)
implementation(libs.androidx.constraintlayout)
// Compose
implementation(platform(libs.compose.bom))
implementation(libs.compose.runtime)
implementation(libs.compose.ui)
implementation(libs.compose.foundation)
implementation(libs.compose.material3)
// Navigation Compose
implementation(libs.androidx.navigation.compose)
implementation(libs.androidx.navigation.common)
kapt(libs.hilt.compiler)
implementation(libs.hilt.android)
implementation(libs.okhttp)
implementation(libs.retrofit)
implementation(project(":core:common"))
implementation(project(":core:network"))
implementation(project(":core:database"))
implementation(project(":core:config"))
implementation(project(":feature:splash"))
implementation(project(":feature:schedule"))
implementation(project(":feature:progress"))
implementation(project(":feature:news"))
implementation(projects.core.common)
implementation(projects.core.config)
implementation(projects.core.navigation)
implementation(projects.core.ui)
implementation(projects.feature.splash)
implementation(projects.feature.schedule)
implementation(projects.feature.progress)
implementation(projects.feature.news)
}