30 lines
No EOL
713 B
Kotlin
30 lines
No EOL
713 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
dependencies {
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.core)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Analytics - Models */
|
|
api(projects.core.analytics.models)
|
|
|
|
/** Domain */
|
|
implementation(projects.domain.analytics)
|
|
implementation(projects.domain.models)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.coroutines)
|
|
|
|
/** Core shouldn't depend on core, but in case with utils and logging its necessary */
|
|
implementation(projects.core.utils)
|
|
|
|
/** For calculating user id hash */
|
|
implementation(tangemDeps.card.core)
|
|
|
|
/** Tests */
|
|
testImplementation(projects.test.core)
|
|
} |