mirror of
https://github.com/twofas/2fas-android.git
synced 2024-12-04 16:20:04 +01:00
19 lines
457 B
Plaintext
19 lines
457 B
Plaintext
|
@Suppress("DSL_SCOPE_VIOLATION")
|
||
|
plugins {
|
||
|
alias(libs.plugins.twofasAndroidLibrary)
|
||
|
id(libs.plugins.twofasCompose.get().pluginId)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.twofasapp.designsystem"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":core:common"))
|
||
|
|
||
|
implementation(libs.core)
|
||
|
implementation(libs.bundles.appCompat)
|
||
|
implementation(libs.bundles.compose)
|
||
|
implementation(libs.bundles.accompanist)
|
||
|
implementation(libs.bundles.coil)
|
||
|
}
|