mirror of
https://github.com/twofas/2fas-android.git
synced 2024-12-18 23:19:54 +01:00
19 lines
438 B
Plaintext
19 lines
438 B
Plaintext
|
@Suppress("DSL_SCOPE_VIOLATION")
|
||
|
plugins {
|
||
|
alias(libs.plugins.twofasAndroidLibrary)
|
||
|
alias(libs.plugins.kotlinSerialization)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.twofasapp.network"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":di"))
|
||
|
implementation(project(":serialization"))
|
||
|
implementation(project(":prefs"))
|
||
|
implementation(project(":environment"))
|
||
|
|
||
|
implementation(libs.bundles.ktor)
|
||
|
implementation(libs.timber)
|
||
|
}
|