plugins { alias(deps.plugins.android.library) alias(deps.plugins.kotlin.android) alias(deps.plugins.kotlin.kapt) id("configuration") } android { namespace = "com.tangem.data.quotes" } tasks.withType().configureEach { useJUnitPlatform() } dependencies { // region Project - Core implementation(projects.core.datasource) api(projects.core.utils) // endregion // region Project - Data implementation(projects.data.common) // endregion // region Project - Domain api(projects.domain.models) api(projects.domain.quotes) // endregion // region Project - Libs implementation(projects.libs.blockchainSdk) // endregion // region DI implementation(deps.hilt.android) kapt(deps.hilt.kapt) // endregion // region Tangem SDKs implementation(tangemDeps.blockchain) // endregion // region Other libraries implementation(deps.androidx.datastore) implementation(deps.moshi.kotlin) implementation(deps.timber) // endregion // region Tests testRuntimeOnly(deps.test.junit5.engine) testImplementation(projects.common.test) testImplementation(projects.test.core) // endregion }