2023-01-24 17:45:28 +01:00
|
|
|
@Suppress("DSL_SCOPE_VIOLATION")
|
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
|
|
alias(libs.plugins.twofasCompose)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.twofasapp.feature.trash"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core:common"))
|
2023-06-04 23:07:20 +02:00
|
|
|
implementation(project(":core:android"))
|
2023-01-24 17:45:28 +01:00
|
|
|
implementation(project(":core:locale"))
|
|
|
|
implementation(project(":core:designsystem"))
|
|
|
|
implementation(project(":data:services"))
|
|
|
|
|
|
|
|
implementation(libs.bundles.compose)
|
|
|
|
implementation(libs.bundles.viewModel)
|
|
|
|
implementation(libs.bundles.accompanist)
|
|
|
|
}
|