24 lines
No EOL
582 B
Kotlin
24 lines
No EOL
582 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
alias(deps.plugins.ksp)
|
|
id("configuration")
|
|
}
|
|
|
|
dependencies {
|
|
// region Tangem libraries
|
|
implementation(tangemDeps.card.core)
|
|
implementation(tangemDeps.hot.core)
|
|
// endregion
|
|
|
|
// region Domain modules
|
|
implementation(project(":domain:models"))
|
|
// endregion
|
|
|
|
// region Other libraries
|
|
implementation(deps.kotlin.serialization)
|
|
implementation(deps.moshi.kotlin)
|
|
implementation(deps.timber)
|
|
ksp(deps.moshi.kotlin.codegen)
|
|
// endregion
|
|
} |