plugins { alias(deps.plugins.android.library) alias(deps.plugins.kotlin.android) alias(deps.plugins.kotlin.kapt) alias(deps.plugins.hilt.android) id("configuration") } android { namespace = "com.tangem.data.transaction" } tasks.withType().configureEach { useJUnitPlatform() } dependencies { /** Tangem SDKs */ implementation(tangemDeps.blockchain) implementation(tangemDeps.card.core) /** Core */ implementation(projects.core.datasource) implementation(projects.core.utils) /** Domain */ implementation(projects.libs.blockchainSdk) implementation(projects.domain.legacy) implementation(projects.domain.walletManager) implementation(projects.domain.wallets.models) implementation(projects.domain.tokens.models) implementation(projects.domain.transaction.models) implementation(projects.domain.transaction) implementation(projects.domain.demo) /** DI */ implementation(deps.hilt.android) kapt(deps.hilt.kapt) /** Other */ implementation(deps.timber) /** tests */ testImplementation(projects.common.test) testImplementation(deps.test.junit5) testRuntimeOnly(deps.test.junit5.engine) testImplementation(deps.test.coroutine) testImplementation(deps.test.truth) testImplementation(deps.test.mockk) }