tangem-app-android-audited/data/hot-wallet/build.gradle.kts
2026-07-01 17:12:04 +03:00

39 lines
No EOL
846 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.hilt.android)
id("configuration")
}
android {
namespace = "com.tangem.data.hotwallet"
}
dependencies {
// region Kotlin
implementation(deps.kotlin.coroutines)
// endregion
// region Other libraries
implementation(deps.androidx.annotation)
implementation(deps.androidx.datastore)
implementation(deps.moshi)
// endregion
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// endregion
// region Core modules
api(projects.core.datasource)
implementation(projects.core.utils)
// endregion
// region Domain
api(projects.domain.hotWallet)
implementation(projects.domain.models)
// endregion
}