2fas-android/parsers/build.gradle.kts

16 lines
363 B
Plaintext
Raw Normal View History

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.twofasAndroidLibrary)
2023-05-12 14:58:30 +02:00
alias(libs.plugins.kotlinSerialization)
}
android {
namespace = "com.twofasapp.parsers"
}
dependencies {
2023-09-30 14:09:56 +02:00
implementation(project(":core:common"))
implementation(project(":prefs"))
2023-06-04 23:07:20 +02:00
implementation(libs.timber)
2023-09-30 14:09:56 +02:00
implementation(libs.kotlinSerialization)
}