Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-02 13:53:12 +04:00
parent 0bfc7eee60
commit 47f1ccb854
15 changed files with 361 additions and 322 deletions

View file

@ -11,29 +11,35 @@ android {
}
dependencies {
/** Domain */
implementation(projects.domain.pushNotificationPreferences)
implementation(projects.domain.models)
/** Core */
implementation(projects.core.datasource)
implementation(projects.core.utils)
/** Other */
implementation(deps.androidx.datastore)
implementation(deps.arrow.core)
// region Kotlin
implementation(deps.kotlin.coroutines)
// endregion
/** DI */
// region Other libraries
implementation(deps.arrow.core)
// endregion
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// endregion
/** Tests */
testImplementation(deps.test.junit5)
// region Core
api(projects.core.datasource)
api(projects.core.utils)
// endregion
// region Domain
api(projects.domain.pushNotificationPreferences)
implementation(projects.domain.models)
// endregion
// region Tests
testImplementation(deps.test.coroutine)
testImplementation(deps.test.truth)
testImplementation(deps.test.junit5)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(deps.test.turbine)
testImplementation(deps.moshi)
testImplementation(deps.moshi.kotlin)
// endregion
}