18 lines
No EOL
414 B
Kotlin
18 lines
No EOL
414 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("kotlin-parcelize")
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.tokens.model"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.domain.txhistory.models)
|
|
implementation(projects.core.analytics.models)
|
|
implementation(deps.tangem.blockchain) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
} |