tangem-app-android-audited/domain/dynamic-addresses/build.gradle.kts
2026-04-01 19:44:35 +04:00

20 lines
No EOL
410 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(tangemDeps.blockchain) {
exclude(module = "joda-time")
}
}