2023-09-30 14:09:56 +02:00
|
|
|
@Suppress("DSL_SCOPE_VIOLATION")
|
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
|
|
alias(libs.plugins.twofasCompose)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.twofasapp.feature.widget"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-05 15:32:35 +01:00
|
|
|
implementation(project(":base"))
|
|
|
|
implementation(project(":prefs"))
|
2023-09-30 14:09:56 +02:00
|
|
|
implementation(project(":core:common"))
|
|
|
|
implementation(project(":core:android"))
|
|
|
|
implementation(project(":core:locale"))
|
|
|
|
implementation(project(":core:designsystem"))
|
|
|
|
implementation(project(":data:services"))
|
2023-11-05 15:32:35 +01:00
|
|
|
implementation(project(":data:session"))
|
2023-09-30 14:09:56 +02:00
|
|
|
|
|
|
|
implementation(libs.bundles.viewModel)
|
|
|
|
implementation(libs.bundles.glance)
|
|
|
|
implementation(libs.bundles.compose)
|
|
|
|
implementation(libs.workManager)
|
|
|
|
implementation(libs.timber)
|
|
|
|
}
|