37 lines
No EOL
992 B
Kotlin
37 lines
No EOL
992 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.managetokens"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/* Domain */
|
|
api(projects.domain.core)
|
|
api(projects.domain.manageTokens.models)
|
|
api(projects.domain.networks)
|
|
api(projects.domain.quotes)
|
|
api(projects.domain.walletManager)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.staking)
|
|
implementation(projects.domain.tokens)
|
|
implementation(projects.domain.card)
|
|
implementation(projects.domain.wallets)
|
|
implementation(projects.domain.legacy)
|
|
|
|
implementation(tangemDeps.blockchain)
|
|
|
|
/* Core */
|
|
api(projects.core.pagination)
|
|
testImplementation(projects.core.pagination)
|
|
|
|
/* Tests */
|
|
testImplementation(deps.test.junit5)
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.truth)
|
|
} |