74 lines
No EOL
2 KiB
Kotlin
74 lines
No EOL
2 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.hilt.android)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.features.foryou.impl"
|
|
|
|
packaging {
|
|
resources {
|
|
merges += "paymentrequest.proto"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Project - Features */
|
|
api(projects.features.forYou.api)
|
|
api(projects.features.promoBanners.api)
|
|
implementation(projects.features.commonFeatures.api)
|
|
|
|
/** Project - Core */
|
|
api(projects.core.configToggles)
|
|
api(projects.core.decompose)
|
|
api(projects.core.utils)
|
|
implementation(projects.core.ui)
|
|
|
|
/** Project - Common */
|
|
api(projects.common.ui)
|
|
implementation(projects.common.routing)
|
|
|
|
/** Project - Domain */
|
|
api(projects.domain.account.status)
|
|
api(projects.domain.appCurrency)
|
|
api(projects.domain.common)
|
|
api(projects.domain.wallets)
|
|
implementation(projects.domain.account)
|
|
implementation(projects.domain.models)
|
|
|
|
/** Project - Domain models */
|
|
implementation(projects.domain.appCurrency.models)
|
|
|
|
/** Compose */
|
|
api(deps.compose.animation)
|
|
api(deps.compose.foundation)
|
|
implementation(deps.compose.material3)
|
|
implementation(deps.compose.reorderable)
|
|
implementation(deps.compose.ui)
|
|
implementation(deps.compose.ui.tooling)
|
|
|
|
/** Other libraries */
|
|
implementation(deps.androidx.appCompat)
|
|
implementation(deps.arrow.core)
|
|
implementation(deps.decompose.ext.compose)
|
|
implementation(deps.decompose)
|
|
implementation(deps.haze)
|
|
implementation(deps.kotlin.coroutines)
|
|
implementation(deps.kotlin.immutable.collections)
|
|
implementation(deps.lifecycle.compose)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Tests */
|
|
testImplementation(projects.common.test)
|
|
testImplementation(projects.test.core)
|
|
testImplementation(projects.test.mock)
|
|
} |