Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-01 17:01:46 +04:00
parent 79f79d1c34
commit 82b7c5afc6
16 changed files with 347 additions and 288 deletions

View file

@ -6,17 +6,19 @@ plugins {
}
dependencies {
/* Domain */
implementation(projects.domain.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.blockaid.models)
implementation(projects.domain.transaction.models)
// region Kotlin
api(deps.kotlin.serialization)
// endregion
/* Other */
implementation(deps.moshi)
// region Other libraries
api(deps.moshi)
ksp(deps.moshi.kotlin.codegen)
// endregion
/* Utils */
implementation(deps.kotlin.serialization)
// region Domain models
api(projects.domain.blockaid.models)
api(projects.domain.models)
api(projects.domain.tokens.models)
api(projects.domain.transaction.models)
// endregion
}