Updated on 2026-08-14

This commit is contained in:
Tangem 2024-06-04 20:57:05 +03:00
parent 9c5490bced
commit a2792223a3
9 changed files with 534 additions and 0 deletions

View file

@ -0,0 +1,24 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.common.ui.charts"
}
dependencies {
/** Project - Core */
implementation(projects.core.ui)
/** Compose */
implementation(deps.tangem.vico.core)
implementation(deps.tangem.vico.compose)
implementation(deps.tangem.vico.compose.m3)
implementation(deps.compose.foundation)
implementation(deps.compose.material3)
implementation(deps.compose.ui.tooling)
implementation(deps.compose.ui.utils)
}