26 lines
No EOL
603 B
Kotlin
26 lines
No EOL
603 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.card"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.analytics.models)
|
|
|
|
implementation(projects.domain.demo)
|
|
implementation(projects.domain.core)
|
|
implementation(projects.domain.legacy)
|
|
// TODO: Remove after new card scan result was implemented
|
|
implementation(projects.domain.models)
|
|
|
|
|
|
implementation(deps.tangem.card.core)
|
|
implementation(deps.tangem.blockchain) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
|
|
} |