26 lines
No EOL
681 B
Kotlin
26 lines
No EOL
681 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.dynamicaddresses"
|
|
}
|
|
dependencies {
|
|
api(projects.domain.core)
|
|
api(projects.domain.dynamicAddresses.models)
|
|
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.walletManager)
|
|
implementation(projects.domain.wallets)
|
|
implementation(projects.libs.blockchainSdk)
|
|
|
|
implementation(tangemDeps.blockchain) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
implementation(tangemDeps.card.core)
|
|
|
|
testImplementation(projects.common.test)
|
|
testImplementation(projects.test.core)
|
|
} |