tangem-app-android-audited/domain/analytics/build.gradle.kts
2025-03-03 13:28:34 +04:00

18 lines
No EOL
456 B
Kotlin

plugins {
alias(deps.plugins.kotlin.jvm)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.ksp)
id("configuration")
}
dependencies {
/** Project - Domain */
implementation(projects.core.utils)
implementation(projects.domain.core)
implementation(projects.domain.wallets.models)
implementation(deps.moshi.kotlin)
implementation(deps.arrow.core)
implementation(deps.arrow.fx)
ksp(deps.moshi.kotlin.codegen)
}