29 lines
No EOL
609 B
Kotlin
29 lines
No EOL
609 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.features.addressbook.api"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/* Project - Common */
|
|
api(projects.common.routing)
|
|
implementation(projects.common.ui)
|
|
|
|
/* Project - Domain */
|
|
implementation(projects.domain.models)
|
|
|
|
/* Project - Core */
|
|
implementation(projects.core.decompose)
|
|
implementation(projects.core.ui)
|
|
|
|
/* Compose */
|
|
implementation(deps.compose.runtime)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.immutable.collections)
|
|
} |