mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-25 11:50:18 +01:00
16 lines
371 B
Plaintext
16 lines
371 B
Plaintext
|
@Suppress("DSL_SCOPE_VIOLATION")
|
||
|
plugins {
|
||
|
alias(libs.plugins.twofasAndroidLibrary)
|
||
|
// alias(libs.plugins.twofasCompose)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.twofasapp.android"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(libs.bundles.compose)
|
||
|
implementation(libs.bundles.accompanist)
|
||
|
implementation(libs.bundles.viewModel)
|
||
|
implementation(libs.kotlinCoroutines)
|
||
|
}
|