33 lines
No EOL
715 B
Kotlin
33 lines
No EOL
715 B
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.core.abtests"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region DI
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
// endregion
|
|
|
|
// region Kotlin
|
|
implementation(deps.kotlin.coroutines)
|
|
// endregion
|
|
|
|
// region Other libraries
|
|
implementation(deps.amplitude.experiment)
|
|
// endregion
|
|
|
|
// region Core modules
|
|
implementation(projects.core.analytics.models)
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.core.utils)
|
|
// endregion
|
|
} |