29 lines
No EOL
668 B
Kotlin
29 lines
No EOL
668 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.domain.markets"
|
|
}
|
|
|
|
|
|
dependencies {
|
|
/* Domain */
|
|
api(projects.domain.appCurrency.models)
|
|
api(projects.domain.card)
|
|
api(projects.domain.core)
|
|
api(projects.domain.markets.models)
|
|
api(projects.domain.wallets.models)
|
|
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.tokens)
|
|
|
|
api(projects.core.pagination)
|
|
|
|
/* Utils */
|
|
implementation(deps.kotlin.serialization)
|
|
implementation(projects.core.utils)
|
|
} |