Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-31 13:11:49 +03:00
parent d677abc44d
commit dadcea496b
9 changed files with 205 additions and 27 deletions

View file

@ -23,6 +23,10 @@ dependencies {
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
/** Domain modules */
implementation(projects.domain.appTheme)
implementation(projects.domain.appTheme.models)
/** Core modules */
implementation(project(":core:featuretoggles"))
implementation(project(":core:ui"))
@ -32,4 +36,8 @@ dependencies {
/** Other modules */
implementation(project(":libs:crypto"))
/** Other libraries */
implementation(deps.arrow.core)
implementation(deps.timber)
}