51 lines
No EOL
1.4 KiB
Kotlin
51 lines
No EOL
1.4 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.data.tokens"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Project - Domain */
|
|
implementation(projects.domain.core)
|
|
implementation(projects.domain.demo)
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.tokens)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.txhistory.models)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.staking.models)
|
|
|
|
/** Project - Data */
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.data.common)
|
|
|
|
/** Project - Utils */
|
|
implementation(projects.core.utils)
|
|
implementation(projects.domain.legacy)
|
|
implementation(projects.libs.blockchainSdk)
|
|
|
|
/** Tangem SDKs */
|
|
implementation(deps.tangem.blockchain)
|
|
implementation(deps.tangem.card.core)
|
|
|
|
/** AndroidX */
|
|
implementation(deps.androidx.datastore)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.core)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.coroutines)
|
|
implementation(deps.moshi.kotlin)
|
|
implementation(deps.jodatime)
|
|
implementation(deps.timber)
|
|
implementation(deps.retrofit) // For HttpException
|
|
implementation(deps.androidx.paging.runtime)
|
|
} |