tangem-app-android-audited/domain/wallet-connect/models/build.gradle.kts
2025-07-10 20:47:25 +05:00

22 lines
No EOL
575 B
Kotlin

plugins {
alias(deps.plugins.kotlin.jvm)
alias(deps.plugins.ksp)
alias(deps.plugins.kotlin.serialization)
id("configuration")
}
dependencies {
/* Domain */
implementation(projects.domain.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.blockaid.models)
implementation(projects.domain.transaction.models)
/* Other */
implementation(deps.moshi)
ksp(deps.moshi.kotlin.codegen)
/* Utils */
implementation(deps.kotlin.serialization)
}