39 lines
No EOL
993 B
Kotlin
39 lines
No EOL
993 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
alias(deps.plugins.hilt.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.lib.auth"
|
|
}
|
|
dependencies {
|
|
/** Core */
|
|
implementation(projects.core.configToggles)
|
|
implementation(projects.core.datasource)
|
|
implementation(projects.core.utils)
|
|
|
|
/** Tangem libraries */
|
|
implementation(tangemDeps.card.core)
|
|
implementation(tangemDeps.card.android)
|
|
|
|
/** Firebase */
|
|
implementation(platform(deps.firebase.bom))
|
|
implementation(deps.firebase.crashlytics)
|
|
|
|
/** Other */
|
|
implementation(deps.arrow.core)
|
|
|
|
/** DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/** Tests */
|
|
testImplementation(deps.test.junit5)
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.truth)
|
|
testImplementation(deps.test.mockk)
|
|
} |