31 lines
No EOL
616 B
Kotlin
31 lines
No EOL
616 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.hotwallet"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region Kotlin
|
|
api(deps.kotlin.coroutines)
|
|
// endregion
|
|
|
|
// region Other libraries
|
|
api(deps.arrow.core)
|
|
// endregion
|
|
|
|
// region Domain models
|
|
api(projects.domain.models)
|
|
// endregion
|
|
|
|
// region Tests
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.junit5)
|
|
testImplementation(deps.test.mockk)
|
|
testImplementation(deps.test.truth)
|
|
// endregion
|
|
} |