Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-29 12:25:21 +04:00
parent 48137d6199
commit f18ec7ac86
18 changed files with 148 additions and 178 deletions

View file

@ -8,32 +8,50 @@ plugins {
}
android {
namespace = "com.tangem.lib.auth"
namespace = "com.tangem.libs.auth"
}
dependencies {
/** Core */
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// endregion
// region Kotlin
api(deps.kotlin.datetime)
api(deps.kotlin.serialization)
implementation(deps.kotlin.coroutines)
// endregion
// region Other libraries
api(deps.arrow.core)
api(deps.okHttp)
implementation(deps.moshi)
implementation(deps.retrofit)
// endregion
// region Firebase
implementation(platform(deps.firebase.bom))
implementation(deps.firebase.crashlytics)
// endregion
// region Tangem
implementation(tangemDeps.card.android)
implementation(tangemDeps.card.core)
// endregion
// region Core modules
implementation(projects.core.configToggles)
implementation(projects.core.datasource)
implementation(projects.core.utils)
// endregion
/** 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)
// region Tests
testImplementation(deps.androidx.datastore)
testImplementation(deps.test.coroutine)
testImplementation(deps.test.truth)
testImplementation(deps.test.junit5)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
// endregion
}