36 lines
No EOL
898 B
Kotlin
36 lines
No EOL
898 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
alias(deps.plugins.hilt.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.legacy"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.common)
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.card)
|
|
implementation(projects.domain.legacy)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.visa.models)
|
|
|
|
implementation(projects.core.res)
|
|
|
|
/** Tangem libraries */
|
|
implementation(tangemDeps.card.core)
|
|
implementation(tangemDeps.card.android) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
|
|
/** Other libraries */
|
|
implementation(deps.timber)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
} |