tangem-app-android-audited/features/swap/api/build.gradle.kts
2025-02-10 20:38:58 +02:00

20 lines
No EOL
456 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("kotlin-parcelize")
id("configuration")
}
android {
namespace = "com.tangem.features.swap.api"
}
dependencies {
/** Project - Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
/** Project - Domain */
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
}