tangem-app-android-audited/domain/wallets/models/build.gradle.kts
2025-02-19 12:09:00 +03:00

23 lines
No EOL
551 B
Kotlin

plugins {
alias(deps.plugins.kotlin.jvm)
alias(deps.plugins.kotlin.serialization)
alias(deps.plugins.kotlin.kapt)
id("configuration")
}
dependencies {
// region Tangem libraries
implementation(tangemDeps.card.core)
// endregion
// region Domain modules
implementation(project(":domain:models"))
// endregion
// region Other libraries
implementation(deps.kotlin.serialization)
implementation(deps.moshi.kotlin)
implementation(deps.timber)
kapt(deps.moshi.kotlin.codegen)
// endregion
}