2fas-android/data/services/build.gradle.kts
2023-09-30 14:09:56 +02:00

26 lines
718 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:common"))
implementation(project(":core:storage"))
implementation(project(":core:otp"))
implementation(project(":core:cipher"))
implementation(project(":data:cloud"))
implementation(project(":parsers"))
implementation(libs.bundles.room)
implementation(libs.kotlinCoroutines)
implementation(libs.kotlinSerialization)
implementation(libs.timber)
implementation(libs.workManager)
implementation(project(mapOf("path" to ":prefs")))
}