Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-06 13:39:30 +03:00
commit 92849d43c2
1407 changed files with 64092 additions and 11990 deletions

View file

@ -2,6 +2,7 @@ plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.ksp)
id("configuration")
}
@ -10,41 +11,21 @@ android {
}
dependencies {
implementation(projects.features.virtualAccounts.details.api) // VIRTUAL_ACCOUNTS_ENABLED
// region Project - Common
implementation(projects.common.ui) // It's needed for getting AccountName.DefaultMain value
// region Kotlin
implementation(deps.kotlin.coroutines)
// endregion
// region Project - Core
implementation(projects.core.datasource)
implementation(projects.core.configToggles)
implementation(projects.core.res)
api(projects.core.utils)
// endregion
// region Project - Domain
api(projects.domain.account)
api(projects.domain.card)
api(projects.domain.common)
api(projects.domain.models)
api(projects.domain.tokens)
api(projects.domain.wallets)
api(projects.domain.visa)
// endregion
// region Project - Data
implementation(projects.data.common)
// endregion
// region Project - Libs
implementation(projects.libs.crypto)
implementation(projects.libs.blockchainSdk)
// region Other libraries
api(deps.moshi)
ksp(deps.moshi.kotlin.codegen)
implementation(deps.androidx.annotation)
implementation(deps.androidx.datastore)
implementation(deps.arrow.core)
// endregion
// region Tangem dependencies
implementation(tangemDeps.card.core)
implementation(tangemDeps.blockchain)
implementation(tangemDeps.card.core)
implementation(tangemDeps.hot.core)
// endregion
@ -53,20 +34,44 @@ dependencies {
kapt(deps.hilt.kapt)
// endregion
// region AndroidX libraries
implementation(deps.androidx.datastore)
// region Project - Core
api(projects.core.configToggles)
api(projects.core.datasource)
api(projects.core.utils)
implementation(projects.core.res)
// endregion
// region Other Dependencies
implementation(deps.arrow.core)
implementation(deps.kotlin.coroutines)
implementation(deps.moshi)
implementation(deps.moshi.kotlin)
// region Project - Domain
api(projects.domain.account)
api(projects.domain.common)
api(projects.domain.core)
api(projects.domain.models)
api(projects.domain.tokens)
implementation(projects.domain.card)
runtimeOnly(projects.domain.visa)
runtimeOnly(projects.domain.wallets)
// endregion
// region Project - Data
api(projects.data.common)
// endregion
// region Project - Features
api(projects.features.virtualAccounts.details.api) // VIRTUAL_ACCOUNTS_ENABLED
// endregion
// region Project - Common
implementation(projects.common.ui) // It's needed for getting AccountName.DefaultMain value
// endregion
// region Project - Libs
implementation(projects.libs.blockchainSdk)
implementation(projects.libs.crypto)
// endregion
// region Test
testImplementation(deps.test.turbine)
testImplementation(projects.common.test)
testImplementation(projects.test.core)
testImplementation(deps.test.turbine)
// endregion
}