Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-29 15:32:52 +05:00
parent 4f3d1f10c7
commit 9b23c9a7a2
33 changed files with 484 additions and 115 deletions

View file

@ -1,8 +1,13 @@
plugins {
alias(deps.plugins.kotlin.jvm)
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.managetokens"
}
dependencies {
/* Domain */
@ -10,6 +15,8 @@ dependencies {
api(projects.domain.core)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.card)
implementation(projects.domain.legacy)
/* Core */
api(projects.core.pagination)