tangem-app-android-audited/domain/wallet-connect/build.gradle.kts
2025-04-21 03:32:52 -07:00

24 lines
No EOL
600 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.walletconnect"
}
dependencies {
/* Project - Domain */
implementation(projects.domain.core)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.walletConnect.models)
implementation(projects.domain.blockaid.models)
/* Other */
implementation(deps.moshi.adapters)
/* Tangem libraries */
implementation(tangemDeps.blockchain)
}