Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-17 12:14:43 +05:00
parent 717b8e2df2
commit c5211efa73
15 changed files with 195 additions and 1 deletions

1
domain/express/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,24 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.serialization)
id("configuration")
}
android {
namespace = "com.tangem.domain.express.models"
}
dependencies {
/** Core */
implementation(projects.core.utils)
implementation(projects.core.datasource)
/** Domain */
implementation(projects.domain.express.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
/** Other */
implementation(deps.moshi.adapters)
}

1
domain/express/models/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,12 @@
plugins {
alias(deps.plugins.kotlin.jvm)
id("configuration")
}
dependencies {
/** Domain */
implementation(projects.domain.tokens.models)
/* Other */
implementation(deps.moshi.adapters)
}