31 lines
No EOL
595 B
Kotlin
31 lines
No EOL
595 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.qrscanning"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region Kotlin
|
|
api(deps.kotlin.coroutines)
|
|
// endregion
|
|
|
|
// region Other libraries
|
|
api(deps.arrow.core)
|
|
// endregion
|
|
|
|
// region Domain
|
|
api(projects.domain.account)
|
|
api(projects.domain.common)
|
|
api(projects.domain.networks)
|
|
// endregion
|
|
|
|
// region Domain models
|
|
api(projects.domain.models)
|
|
api(projects.domain.qrScanning.models)
|
|
// endregion
|
|
} |