38 lines
No EOL
899 B
Kotlin
38 lines
No EOL
899 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.hilt.android)
|
|
alias(deps.plugins.ksp)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.data.express"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Core */
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.core.utils)
|
|
|
|
/** Data */
|
|
implementation(projects.data.common)
|
|
|
|
/** Domain */
|
|
implementation(projects.domain.common)
|
|
implementation(projects.domain.express.models)
|
|
implementation(projects.domain.express)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.txhistory)
|
|
api(projects.domain.models)
|
|
|
|
/** Other */
|
|
implementation(deps.moshi)
|
|
implementation(deps.moshi.kotlin)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
} |