Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-24 15:56:27 +04:00
parent 092ad9d6c4
commit 8491f524b9
6 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,30 @@
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.wallets.models)
/* Project - Data */
implementation(projects.core.datasource)
/* Project - Core */
implementation(projects.core.utils)
/* DI */
implementation(deps.hilt.core)
kapt(deps.hilt.kapt)
/* Other */
implementation(deps.kotlin.coroutines)
}