Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-01 18:44:35 +03:00
parent 8c8e00e7b4
commit 95b6933a14
15 changed files with 205 additions and 9 deletions

View file

@ -0,0 +1,20 @@
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")
}
}