2fas-android/data/services/build.gradle.kts
2023-03-20 08:40:41 +01:00

26 lines
727 B
Plaintext

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
alias(libs.plugins.kotlinSerialization)
}
android {
namespace = "com.twofasapp.data.services"
}
dependencies {
implementation(project(":core:di"))
implementation(project(":core:common"))
implementation(project(":core:storage"))
implementation(project(":core:otp"))
implementation(project(":parsers"))
implementation(project(":widgets:domain"))
implementation(project(":backup:domain"))
implementation(libs.bundles.room)
implementation(libs.kotlinCoroutines)
implementation(libs.kotlinSerialization)
implementation(libs.timber)
implementation(project(mapOf("path" to ":prefs")))
}