Updated on 2026-08-14

This commit is contained in:
Tangem 2023-03-07 17:30:28 +03:00
parent 58bbe85f29
commit 3466a64574
21 changed files with 256 additions and 285 deletions

View file

@ -1,27 +1,27 @@
plugins {
id("com.android.library")
kotlin("android")
kotlin("kapt")
id("com.google.dagger.hilt.android")
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.hilt.android)
id("configuration")
}
dependencies {
/** AndroidX */
implementation(AndroidX.activityCompose)
implementation(deps.androidx.activity.compose)
/** Compose */
implementation(Compose.foundation)
implementation(Compose.hiltNavigation)
implementation(Compose.material)
implementation(Compose.navigation)
implementation(Compose.ui)
implementation(Compose.uiTooling)
implementation(deps.compose.material)
implementation(deps.compose.foundation)
implementation(deps.compose.navigation)
implementation(deps.compose.navigation.hilt)
implementation(deps.compose.ui)
implementation(deps.compose.ui.tooling)
implementation(deps.compose.accompanist.systemUiController)
/** DI */
implementation(Library.accompanistSystemUiController)
implementation(Library.hilt)
kapt(Library.hiltKapt)
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
/** Core modules */
implementation(project(":core:featuretoggles"))