tangem-app-android-audited/domain/hot-wallet/build.gradle.kts
2025-11-17 10:51:54 +03:00

17 lines
No EOL
370 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.hotwallet"
}
dependencies {
implementation(projects.domain.core)
implementation(projects.domain.models)
implementation(projects.domain.wallets.models)
implementation(deps.kotlin.coroutines)
}