34 lines
No EOL
876 B
Kotlin
34 lines
No EOL
876 B
Kotlin
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.txhistory"
|
|
}
|
|
|
|
dependencies {
|
|
/** Project - Domain */
|
|
implementation(projects.domain.core)
|
|
api(projects.domain.express.models)
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.txhistory.models)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.visa.models)
|
|
|
|
/** Project - Other */
|
|
implementation(projects.core.utils)
|
|
|
|
/** Android - Other */
|
|
implementation(deps.androidx.paging.runtime)
|
|
|
|
api(projects.core.pagination)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
} |