51 lines
No EOL
1.5 KiB
Kotlin
51 lines
No EOL
1.5 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.tokens"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Project - Domain */
|
|
api(projects.domain.core)
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.legacy)
|
|
implementation(projects.domain.staking)
|
|
implementation(projects.libs.blockchainSdk)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.txhistory.models)
|
|
implementation(projects.domain.transaction.models)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.appCurrency.models)
|
|
implementation(projects.domain.onramp.models)
|
|
implementation(projects.domain.settings)
|
|
implementation(projects.features.swap.domain.api)
|
|
implementation(projects.features.swap.domain.models)
|
|
|
|
/** Project - Api */
|
|
implementation(projects.features.send.api)
|
|
implementation(projects.features.staking.api)
|
|
implementation(projects.features.markets.api)
|
|
|
|
/** Project - Other */
|
|
implementation(projects.core.utils)
|
|
implementation(projects.libs.crypto)
|
|
|
|
/** Android - Other */
|
|
implementation(deps.androidx.paging.runtime)
|
|
|
|
/** Utils */
|
|
implementation(deps.jodatime)
|
|
implementation(deps.reKotlin)
|
|
|
|
/** Tests */
|
|
testImplementation(deps.test.junit)
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.tangem.blockchain) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
} |