plugins { alias(deps.plugins.android.library) alias(deps.plugins.kotlin.android) alias(deps.plugins.kotlin.kapt) id("configuration") } android { namespace = "com.tangem.data.common" } tasks.withType().configureEach { useJUnitPlatform() } dependencies { /* Core */ implementation(projects.core.datasource) implementation(projects.core.utils) /* Domain */ implementation(projects.domain.account) implementation(projects.domain.demo) implementation(projects.domain.legacy) implementation(projects.domain.card) implementation(projects.domain.models) implementation(projects.domain.tokens.models) implementation(projects.domain.wallets.models) implementation(projects.domain.networks) implementation(projects.domain.walletManager) implementation(projects.domain.wallets) /* Libs - SDK */ implementation(tangemDeps.blockchain) implementation(tangemDeps.card.core) implementation(projects.libs.crypto) implementation(projects.libs.blockchainSdk) /* DI */ implementation(deps.hilt.android) kapt(deps.hilt.kapt) /* Libs - Other */ implementation(deps.androidx.datastore) implementation(deps.arrow.core) implementation(deps.jodatime) implementation(deps.kotlin.coroutines) /* Test */ testImplementation(projects.common.test) testImplementation(projects.test.core) testRuntimeOnly(deps.test.junit5.engine) testImplementation(deps.moshi) }