50 lines
No EOL
1.3 KiB
Kotlin
50 lines
No EOL
1.3 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.promobanners.impl"
|
|
}
|
|
|
|
dependencies {
|
|
/** Project - API */
|
|
api(projects.features.promoBanners.api)
|
|
|
|
/** Domain */
|
|
api(projects.domain.common)
|
|
implementation(projects.domain.models)
|
|
|
|
/** Core */
|
|
api(projects.core.analytics)
|
|
api(projects.core.datasource)
|
|
api(projects.core.decompose)
|
|
api(projects.core.navigation)
|
|
api(projects.core.utils)
|
|
implementation(projects.core.analytics.models)
|
|
implementation(projects.core.ui)
|
|
|
|
/** Compose */
|
|
api(deps.compose.foundation)
|
|
implementation(deps.compose.ui)
|
|
implementation(deps.compose.ui.tooling)
|
|
implementation(deps.lifecycle.compose)
|
|
|
|
/** Other */
|
|
implementation(deps.androidx.appCompat)
|
|
implementation(deps.androidx.core.ktx)
|
|
implementation(deps.decompose)
|
|
implementation(deps.kotlin.coroutines)
|
|
implementation(deps.kotlin.immutable.collections)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Tests */
|
|
testImplementation(deps.test.junit5)
|
|
testImplementation(deps.test.truth)
|
|
} |