tangem-app-android-audited/features/txhistory/api/build.gradle.kts
2026-06-25 17:56:38 +03:00

30 lines
No EOL
762 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)
api(projects.domain.txhistory)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
/** Compose */
implementation(deps.compose.runtime)
implementation(deps.compose.foundation)
implementation(deps.compose.material3)
implementation(deps.compose.ui.tooling)
/** Other */
implementation(deps.kotlin.immutable.collections)
}