tangem-app-android-audited/features/swap-v2/api/build.gradle.kts
2025-10-16 15:00:44 +05:00

35 lines
No EOL
895 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)
api(projects.features.sendV2.api)
/** 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)
}