64 lines
No EOL
1.8 KiB
Kotlin
64 lines
No EOL
1.8 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
alias(deps.plugins.hilt.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.features.yield.supply.impl"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Feature */
|
|
implementation(projects.features.yieldSupply.api)
|
|
implementation(projects.features.sendV2.api)
|
|
|
|
/** Core */
|
|
implementation(projects.core.configToggles)
|
|
implementation(projects.core.decompose)
|
|
implementation(projects.core.ui)
|
|
implementation(projects.core.navigation)
|
|
|
|
/** Common */
|
|
implementation(projects.common.ui)
|
|
implementation(projects.common.routing)
|
|
|
|
/** SDK */
|
|
implementation(tangemDeps.blockchain) {
|
|
exclude(module = "joda-time")
|
|
}
|
|
|
|
/** Domain */
|
|
implementation(projects.domain.models)
|
|
implementation(projects.domain.appCurrency.models)
|
|
implementation(projects.domain.appCurrency)
|
|
implementation(projects.domain.wallets.models)
|
|
implementation(projects.domain.wallets)
|
|
implementation(projects.domain.tokens.models)
|
|
implementation(projects.domain.tokens)
|
|
implementation(projects.domain.transaction.models)
|
|
implementation(projects.domain.transaction)
|
|
implementation(projects.domain.yieldSupply)
|
|
|
|
/** Compose */
|
|
implementation(deps.compose.foundation)
|
|
implementation(deps.compose.runtime)
|
|
implementation(deps.compose.material3)
|
|
implementation(deps.compose.ui)
|
|
implementation(deps.compose.ui.tooling)
|
|
implementation(deps.androidx.activity.compose)
|
|
|
|
/** Other */
|
|
implementation(deps.decompose)
|
|
implementation(deps.decompose.ext.compose)
|
|
implementation(deps.timber)
|
|
implementation(deps.kotlin.immutable.collections)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
} |