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.domain.wallets" } dependencies { // region Core modules implementation(projects.core.res) implementation(projects.core.utils) implementation(projects.core.analytics) // endregion // region Domain modules api(projects.domain.core) api(projects.domain.common) implementation(projects.domain.legacy) implementation(projects.domain.walletManager) implementation(projects.libs.blockchainSdk) implementation(projects.libs.tangemSdkApi) implementation(projects.domain.account) implementation(projects.domain.models) implementation(projects.domain.tokens) implementation(projects.domain.card) implementation(projects.domain.tokens.models) implementation(projects.domain.wallets.models) implementation(projects.domain.notifications.models) implementation(projects.domain.demo.models) implementation(projects.domain.hotWallet) implementation(projects.domain.qrScanning) // endregion // region Domain modules implementation(projects.domain.qrScanning.models) // endregion implementation(projects.common) // region Tangem libraries implementation(tangemDeps.blockchain) // android-library implementation(tangemDeps.card.core) implementation(tangemDeps.hot.core) // endregion /** Other libraries */ implementation(platform(deps.firebase.bom)) implementation(deps.firebase.analytics) // region DI implementation(deps.hilt.android) kapt(deps.hilt.kapt) // end // region Tests testImplementation(deps.test.junit5) testRuntimeOnly(deps.test.junit5.engine) testImplementation(deps.test.coroutine) testImplementation(deps.test.truth) testImplementation(deps.test.mockk) // end } tasks.withType().configureEach { useJUnitPlatform() }