tangem-app-android-audited/features/swap/domain/api/build.gradle.kts
2023-12-12 19:53:59 +03:00

18 lines
No EOL
394 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.feature.swap.domain.api"
}
dependencies {
implementation(projects.features.swap.domain.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
implementation(deps.arrow.core)
}