25 lines
No EOL
542 B
Kotlin
25 lines
No EOL
542 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.features.wallet.api"
|
|
}
|
|
|
|
dependencies {
|
|
/** AndroidX */
|
|
implementation(deps.androidx.fragment.ktx)
|
|
|
|
/** Project - Domain */
|
|
implementation(projects.domain.models)
|
|
|
|
/** Core */
|
|
implementation(projects.core.ui)
|
|
implementation(projects.core.decompose)
|
|
implementation(projects.common.ui)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.immutable.collections)
|
|
} |