43 lines
No EOL
1.1 KiB
Kotlin
43 lines
No EOL
1.1 KiB
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.hilt.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.features.stories.impl"
|
|
}
|
|
|
|
dependencies {
|
|
/** Feature modules */
|
|
implementation(projects.features.stories.api)
|
|
implementation(projects.features.swap.api)
|
|
|
|
/** Domain modules */
|
|
implementation(projects.domain.promo)
|
|
implementation(projects.domain.promo.models)
|
|
|
|
/** Project - Common */
|
|
implementation(projects.common.routing)
|
|
implementation(projects.common.ui)
|
|
|
|
/** Project - Core */
|
|
implementation(projects.core.configToggles)
|
|
implementation(projects.core.decompose)
|
|
implementation(projects.core.navigation)
|
|
implementation(projects.core.ui)
|
|
|
|
/** AndroidX */
|
|
implementation(deps.androidx.activity.compose)
|
|
implementation(deps.lifecycle.compose)
|
|
|
|
/** Others */
|
|
implementation(deps.timber)
|
|
implementation(deps.arrow.core)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
} |