2fas-android/developer/build.gradle.kts
2023-03-10 21:01:10 +01:00

28 lines
792 B
Plaintext

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
alias(libs.plugins.twofasCompose)
}
android {
namespace = "com.twofasapp.developer"
}
dependencies {
implementation(project(":base"))
implementation(project(":core:di"))
implementation(project(":core:designsystem"))
implementation(project(":data:session"))
implementation(project(":resources"))
implementation(project(":extensions"))
implementation(project(":design"))
implementation(project(":prefs"))
implementation(project(":featuretoggle"))
implementation(project(":push"))
implementation(libs.bundles.appCompat)
implementation(libs.bundles.compose)
implementation(libs.kotlinCoroutines)
implementation(libs.bundles.viewModel)
}