2fas-android/push/build.gradle.kts
Rafał Kobyłko 59374b5309 Initial open source commit
Code review


Clean up
2023-01-24 17:35:17 +01:00

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")
}