mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-26 04:09:51 +01:00
59374b5309
Code review Clean up
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
@Suppress("DSL_SCOPE_VIOLATION")
|
|
plugins {
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
alias(libs.plugins.twofasCompose)
|
|
alias(libs.plugins.kotlinParcelize)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.twofasapp.start"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":base"))
|
|
implementation(project(":di"))
|
|
implementation(project(":core"))
|
|
implementation(project(":resources"))
|
|
implementation(project(":extensions"))
|
|
implementation(project(":environment"))
|
|
implementation(project(":design"))
|
|
implementation(project(":prefs"))
|
|
implementation(project(":navigation"))
|
|
implementation(project(":featuretoggle"))
|
|
implementation(project(":security:domain"))
|
|
implementation(project(":services:domain"))
|
|
implementation(project(":start:domain"))
|
|
implementation(project(":time:domain"))
|
|
implementation(project(":parsers"))
|
|
implementation(project(":core:storage"))
|
|
|
|
implementation(libs.bundles.appCompat)
|
|
implementation(libs.bundles.compose)
|
|
implementation(libs.kotlinCoroutines)
|
|
implementation(libs.timber)
|
|
implementation(libs.workManager)
|
|
} |