tangem-app-android-audited/data/txhistory/build.gradle.kts
2023-07-25 05:52:33 +00:00

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)
}