mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-25 03:40:18 +01:00
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
@Suppress("DSL_SCOPE_VIOLATION")
|
|
plugins {
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
alias(libs.plugins.twofasCompose)
|
|
alias(libs.plugins.kotlinSerialization)
|
|
alias(libs.plugins.protobuf)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.twofasapp.feature.externalimport"
|
|
}
|
|
|
|
protobuf {
|
|
protoc {
|
|
artifact = "com.google.protobuf:protoc:3.19.1"
|
|
}
|
|
generateProtoTasks {
|
|
all().forEach { task ->
|
|
task.builtins {
|
|
create("java") {
|
|
option("lite")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(project(":core:common"))
|
|
implementation(project(":core:android"))
|
|
implementation(project(":core:locale"))
|
|
implementation(project(":core:designsystem"))
|
|
|
|
implementation(project(":data:services"))
|
|
|
|
implementation(project(":feature:qrscan"))
|
|
|
|
implementation(project(":parsers"))
|
|
|
|
implementation(libs.bundles.compose)
|
|
implementation(libs.bundles.viewModel)
|
|
implementation(libs.bundles.accompanist)
|
|
implementation(libs.kotlinCoroutines)
|
|
implementation(libs.kotlinSerialization)
|
|
implementation(libs.protobuf)
|
|
implementation(libs.apacheCommonsCodec)
|
|
} |