mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-25 11:50:18 +01:00
59374b5309
Code review Clean up
26 lines
841 B
Plaintext
26 lines
841 B
Plaintext
@Suppress("DSL_SCOPE_VIOLATION")
|
|
plugins {
|
|
alias(libs.plugins.twofasAndroidLibrary)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.twofasapp.push"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":di"))
|
|
implementation(project(":base"))
|
|
implementation(project(":prefs"))
|
|
implementation(project(":environment"))
|
|
implementation(project(":time:domain"))
|
|
|
|
implementation(libs.kotlinCoroutines)
|
|
implementation(libs.timber)
|
|
|
|
implementation(platform("com.google.firebase:firebase-bom:31.1.0"))
|
|
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
implementation("com.google.firebase:firebase-messaging-ktx")
|
|
implementation("com.google.firebase:firebase-crashlytics")
|
|
implementation("com.google.firebase:firebase-config-ktx")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.6.1")
|
|
} |