2fas-android/feature/security/build.gradle.kts

24 lines
631 B
Plaintext
Raw Normal View History

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
alias(libs.plugins.twofasCompose)
}
android {
2023-09-30 14:09:56 +02:00
namespace = "com.twofasapp.feature.security"
}
dependencies {
implementation(project(":base"))
2023-03-20 08:40:38 +01:00
implementation(project(":core:common"))
implementation(project(":core:locale"))
2023-06-04 23:07:20 +02:00
implementation(project(":core:android"))
2023-03-20 08:40:38 +01:00
implementation(project(":core:designsystem"))
2023-03-10 21:01:01 +01:00
implementation(project(":data:session"))
2023-09-30 14:09:56 +02:00
implementation(project(":prefs"))
implementation(libs.bundles.appCompat)
implementation(libs.bundles.compose)
implementation(libs.biometric)
}