import com.tangem.plugin.configuration.configurations.extension.kaptForObfuscatingVariants plugins { alias(deps.plugins.android.library) alias(deps.plugins.kotlin.android) alias(deps.plugins.kotlin.kapt) alias(deps.plugins.ksp) id("configuration") } android { namespace = "com.tangem.data.tokens" } dependencies { // region Project - Data implementation(projects.data.common) implementation(projects.data.networks) // endregion // region Project - Domain implementation(projects.domain.account) implementation(projects.domain.card) implementation(projects.domain.common) implementation(projects.domain.core) implementation(projects.domain.demo) implementation(projects.domain.express) implementation(projects.domain.legacy) implementation(projects.domain.models) implementation(projects.domain.staking) implementation(projects.domain.staking.models) implementation(projects.domain.tokens) implementation(projects.domain.tokens.models) implementation(projects.domain.txhistory.models) implementation(projects.domain.walletManager) implementation(projects.domain.transaction) implementation(projects.domain.wallets.models) // endregion // region Project - Utils implementation(projects.core.datasource) implementation(projects.core.utils) implementation(projects.libs.blockchainSdk) implementation(projects.common) // endregion // region Project - Features API implementation(projects.features.sendV2.api) // endregion // region Tangem SDKs implementation(tangemDeps.blockchain) implementation(tangemDeps.card.core) // endregion // region AndroidX implementation(deps.androidx.datastore) implementation(deps.androidx.paging.runtime) // endregion // region DI implementation(deps.hilt.core) kapt(deps.hilt.kapt) // endregion // region Other implementation(deps.jodatime) implementation(deps.kotlin.coroutines) implementation(deps.moshi.kotlin) implementation(deps.retrofit) // For HttpException ksp(deps.moshi.kotlin.codegen) kaptForObfuscatingVariants(deps.retrofit.response.type.keeper) // endregion // region Tests testImplementation(projects.common.test) testImplementation(projects.test.core) // endregion }