2023-01-19 22:15:01 +01:00
|
|
|
@Suppress("DSL_SCOPE_VIOLATION")
|
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
|
|
alias(libs.plugins.twofasCompose)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.twofasapp.developer"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":base"))
|
2023-01-24 17:45:28 +01:00
|
|
|
implementation(project(":core:di"))
|
2023-02-18 21:19:40 +01:00
|
|
|
implementation(project(":core:designsystem"))
|
2023-03-10 21:01:01 +01:00
|
|
|
implementation(project(":data:session"))
|
2023-01-19 22:15:01 +01:00
|
|
|
implementation(project(":resources"))
|
|
|
|
implementation(project(":extensions"))
|
|
|
|
implementation(project(":design"))
|
2023-01-24 17:45:28 +01:00
|
|
|
|
2023-01-19 22:15:01 +01:00
|
|
|
implementation(project(":prefs"))
|
|
|
|
implementation(project(":featuretoggle"))
|
|
|
|
implementation(project(":push"))
|
|
|
|
|
|
|
|
implementation(libs.bundles.appCompat)
|
|
|
|
implementation(libs.bundles.compose)
|
|
|
|
implementation(libs.kotlinCoroutines)
|
|
|
|
implementation(libs.bundles.viewModel)
|
|
|
|
}
|