tangem-app-android-audited/features/txhistory/api/build.gradle.kts
2026-04-30 11:38:20 +03:00

28 lines
No EOL
684 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.txhistory.api"
}
dependencies {
/** Project - Core */
implementation(projects.core.ui)
implementation(projects.core.decompose)
/** Domain models */
api(projects.domain.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
/** Compose */
implementation(deps.compose.runtime)
implementation(deps.compose.foundation)
implementation(deps.compose.ui.tooling)
/** Other */
implementation(deps.kotlin.immutable.collections)
}