tangem-app-android-audited/domain/wallet-connect/models/build.gradle.kts
2025-04-25 13:44:00 +05:00

20 lines
No EOL
477 B
Kotlin

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