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

41 lines
No EOL
850 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
id("configuration")
}
android {
namespace = "com.tangem.data.appcurrency"
}
dependencies {
// region Kotlin
implementation(deps.kotlin.coroutines)
// endregion
// region Other libraries
implementation(deps.arrow.core)
implementation(deps.jodatime)
// endregion
// region DI
implementation(deps.hilt.core)
kapt(deps.hilt.kapt)
// endregion
// region Project - Core
api(projects.core.datasource)
api(projects.core.utils)
// endregion
// region Project - Data
api(projects.data.common)
// endregion
// region Project - Domain
api(projects.domain.appCurrency)
implementation(projects.domain.appCurrency.models)
// endregion
}