21 lines
No EOL
461 B
Kotlin
21 lines
No EOL
461 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.data.txhistory"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.domain.txhistory)
|
|
|
|
implementation(deps.kotlin.coroutines)
|
|
implementation(deps.androidx.paging.runtime)
|
|
implementation(deps.arrow.core)
|
|
|
|
implementation(deps.hilt.core)
|
|
kapt(deps.hilt.kapt)
|
|
} |