2fas-android/time/build.gradle.kts
Rafał Kobyłko 3d8b6bea96 Fix time shift
2023-04-30 12:36:24 +02:00

23 lines
605 B
Plaintext

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
}
android {
namespace = "com.twofasapp.time"
}
dependencies {
implementation(project(":core:di"))
implementation(project(":core:common"))
implementation(project(":time:domain"))
implementation(project(":prefs"))
implementation(project(":core:network"))
implementation(project(":resources"))
implementation(project(":truetime"))
implementation(project(":truetime-rx"))
implementation(libs.timber)
implementation(libs.workManager)
implementation(libs.coroutinesToRx)
}