tangem-app-android-audited/features/swap-v2/api/build.gradle.kts
2025-07-18 18:03:38 +03:00

33 lines
No EOL
856 B
Kotlin

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