plugins { alias(deps.plugins.android.library) alias(deps.plugins.kotlin.android) id("configuration") } android { namespace = "com.tangem.domain.yield.supply" } tasks.withType().configureEach { useJUnitPlatform() } dependencies { /** Core */ implementation(projects.core.ui) /** Domain */ implementation(projects.domain.models) implementation(projects.domain.yieldSupply.models) implementation(projects.domain.transaction.models) implementation(projects.domain.transaction) implementation(projects.domain.legacy) implementation(projects.domain.blockaid.models) implementation(projects.domain.blockaid) implementation(projects.domain.quotes) implementation(projects.domain.tokens) implementation(projects.domain.appCurrency.models) /** Tandem SDK */ implementation(tangemDeps.blockchain) /** Other */ implementation(deps.arrow.core) 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) }