2fas-android/security/build.gradle.kts
Rafał Kobyłko 59374b5309 Initial open source commit
Code review


Clean up
2023-01-24 17:35:17 +01:00

26 lines
734 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(":di"))
implementation(project(":resources"))
implementation(project(":extensions"))
implementation(project(":design"))
implementation(project(":prefs"))
implementation(project(":navigation"))
implementation(project(":featuretoggle"))
implementation(project(":security:domain"))
implementation(project(":time:domain"))
implementation(libs.bundles.appCompat)
implementation(libs.bundles.compose)
implementation(libs.biometric)
}