tangem-app-android-audited/domain/wallets/build.gradle.kts
2023-09-14 18:24:38 +03:00

34 lines
No EOL
829 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.wallets"
}
dependencies {
// region Core modules
implementation(projects.core.res)
// endregion
// region Domain modules
implementation(projects.domain.legacy)
implementation(projects.domain.models)
implementation(projects.domain.tokens)
implementation(projects.domain.tokens.models)
implementation(projects.domain.wallets.models)
// endregion
// region Tangem libraries
implementation(deps.tangem.blockchain) // android-library
implementation(deps.tangem.card.core)
// endregion
// region Other libraries
implementation(deps.arrow.core)
implementation(deps.kotlin.coroutines)
// endregion
}