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

31 lines
No EOL
857 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.blockaid.models)
implementation(projects.domain.core)
implementation(projects.domain.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.walletConnect.models)
implementation(projects.domain.transaction)
implementation(projects.domain.transaction.models)
/* Project - Core */
implementation(projects.core.analytics)
/* Other */
implementation(deps.moshi.adapters)
/* Tangem libraries */
implementation(tangemDeps.blockchain)
implementation(tangemDeps.card.core)
}