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

30 lines
884 B
Plaintext

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
alias(libs.plugins.twofasCompose)
}
android {
namespace = "com.twofasapp.security"
}
dependencies {
implementation(project(":base"))
implementation(project(":core:di"))
implementation(project(":core:common"))
implementation(project(":core:locale"))
implementation(project(":core:designsystem"))
implementation(project(":data:session"))
implementation(project(":resources"))
implementation(project(":extensions"))
implementation(project(":design"))
implementation(project(":prefs"))
implementation(project(":featuretoggle"))
implementation(project(":security:domain"))
implementation(project(":time:domain"))
implementation(libs.bundles.appCompat)
implementation(libs.bundles.compose)
implementation(libs.biometric)
}