mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-22 18:29:52 +01:00
26 lines
727 B
Plaintext
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")))
|
|
} |