mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-25 03:40:18 +01:00
22 lines
551 B
Plaintext
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)
|
|
} |