34 lines
No EOL
774 B
Kotlin
34 lines
No EOL
774 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.data.apptheme"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Project - Domain */
|
|
implementation(projects.domain.core)
|
|
implementation(projects.domain.appTheme)
|
|
implementation(projects.domain.appTheme.models)
|
|
|
|
/** Project - Data */
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.data.common)
|
|
|
|
/** Project - Utils */
|
|
implementation(projects.core.utils)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.core)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Other */
|
|
implementation(deps.kotlin.coroutines)
|
|
implementation(deps.timber)
|
|
implementation(deps.jodatime)
|
|
} |