2fas-android/feature/appsettings/build.gradle.kts
2023-06-04 23:07:29 +02:00

22 lines
608 B
Plaintext

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
alias(libs.plugins.twofasCompose)
}
android {
namespace = "com.twofasapp.feature.appsettings"
}
dependencies {
implementation(project(":core:di"))
implementation(project(":core:common"))
implementation(project(":core:android"))
implementation(project(":core:locale"))
implementation(project(":core:designsystem"))
implementation(project(":data:session"))
implementation(libs.bundles.compose)
implementation(libs.bundles.viewModel)
implementation(libs.bundles.accompanist)
}