tangem-app-android-audited/features/tokendetails/api/build.gradle.kts
2026-01-20 13:14:10 +03:00

32 lines
No EOL
754 B
Kotlin

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