2023-01-19 22:15:01 +01:00
|
|
|
@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"
|
2023-01-19 22:15:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2023-01-19 22:15:01 +01:00
|
|
|
implementation(project(":prefs"))
|
|
|
|
|
|
|
|
implementation(libs.bundles.appCompat)
|
|
|
|
implementation(libs.bundles.compose)
|
|
|
|
implementation(libs.biometric)
|
|
|
|
}
|