2fas-android/feature/about/build.gradle.kts
Rafał Kobyłko 993b3eb438 wip
ww
2023-02-18 17:09:24 +01:00

22 lines
589 B
Plaintext

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