tangem-app-android-audited/data/wallet-connect/build.gradle.kts
2025-03-26 16:32:25 +03:00

40 lines
No EOL
989 B
Kotlin

plugins {
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.android.library)
id("configuration")
}
android {
namespace = "com.tangem.data.walletconnect"
}
dependencies {
/* Project - Domain */
implementation(projects.domain.walletConnect)
implementation(projects.domain.walletConnect.models)
implementation(projects.domain.wallets.models)
/* Project - Data */
implementation(projects.core.datasource)
/* Project - Core */
implementation(projects.core.utils)
/* DI */
implementation(deps.hilt.core)
kapt(deps.hilt.kapt)
/* Reown - WalletConnect */
implementation(deps.reownCore) {
exclude(group = "app.cash.sqldelight", module = "android-driver")
}
implementation(deps.reownWeb3) {
exclude(group = "app.cash.sqldelight", module = "android-driver")
}
/* Other */
implementation(deps.kotlin.coroutines)
implementation(deps.arrow.core)
}