2fas-android/time/build.gradle.kts
2023-02-11 17:24:14 +01:00

22 lines
551 B
Plaintext

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