tangem-app-android-audited/domain/address-book/build.gradle.kts
2026-06-15 16:11:23 +01:00

28 lines
No EOL
652 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.addressbook"
}
dependencies {
api(projects.domain.core)
api(projects.domain.models)
implementation(projects.domain.transaction)
implementation(projects.domain.tokens)
implementation(deps.arrow.core)
implementation(deps.kotlin.coroutines)
implementation(deps.kotlin.serialization)
// region Test libraries
testImplementation(projects.test.core)
testImplementation(projects.test.mock)
testImplementation(projects.common.test)
// endregion
}