Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-02 18:18:34 +04:00
parent 2494a5c4e6
commit 26bba893ff
16 changed files with 619 additions and 442 deletions

View file

@ -9,19 +9,30 @@ android {
}
dependencies {
/** Project - Core */
implementation(projects.core.ui)
implementation(projects.core.utils)
// region Kotlin
api(deps.kotlin.coroutines)
api(deps.kotlin.immutable.collections)
// endregion
/** Compose */
implementation(tangemDeps.vico.core)
implementation(tangemDeps.vico.compose)
implementation(tangemDeps.vico.compose.m3)
implementation(deps.lifecycle.compose)
implementation(deps.compose.foundation)
// region Compose
api(deps.compose.foundation)
implementation(deps.compose.material3)
implementation(deps.compose.ui.tooling)
implementation(deps.compose.ui.utils)
implementation(deps.kotlin.immutable.collections)
// endregion
// region Other libraries
implementation(deps.androidx.annotation)
implementation(deps.jodatime)
// endregion
// region Vico
implementation(tangemDeps.vico.core)
implementation(tangemDeps.vico.compose)
// endregion
// region Project - Core
implementation(projects.core.ui)
implementation(projects.core.utils)
// endregion
}