Updated on 2026-08-14

This commit is contained in:
Tangem 2023-07-25 12:15:26 +03:00
parent 6016933480
commit ef19a3697d
10 changed files with 202 additions and 72 deletions

View file

@ -10,25 +10,35 @@ android {
}
dependencies {
/** Project - Domain */
implementation(projects.domain.core)
implementation(projects.domain.models)
implementation(projects.domain.tokens)
implementation(projects.domain.demo)
implementation(projects.domain.wallets.models)
/** Project - Data */
implementation(projects.core.datasource)
implementation(projects.data.common)
/** Project - Utils */
implementation(projects.core.utils)
// FIXME: For blockchain extensions, remove after refactoring
implementation(projects.domain.legacy)
implementation(deps.kotlin.coroutines)
implementation(deps.arrow.core)
/** Tangem SDKs */
implementation(deps.tangem.blockchain)
implementation(deps.tangem.card.core)
/** DI */
implementation(deps.hilt.core)
kapt(deps.hilt.kapt)
/** Other */
implementation(deps.kotlin.coroutines)
implementation(deps.arrow.core)
implementation(deps.moshi.kotlin)
implementation(deps.jodatime)
implementation(deps.timber)
implementation(deps.tangem.blockchain)
implementation(deps.tangem.card.core)
}