mirror of
https://github.com/twofas/2fas-android.git
synced 2024-11-22 18:29:52 +01:00
19 lines
463 B
Plaintext
19 lines
463 B
Plaintext
|
@Suppress("DSL_SCOPE_VIOLATION")
|
||
|
plugins {
|
||
|
alias(libs.plugins.twofasAndroidLibrary)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.twofasapp.data.push"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":core:common"))
|
||
|
|
||
|
implementation(libs.kotlinCoroutines)
|
||
|
implementation(libs.timber)
|
||
|
implementation(platform(libs.firebaseBom))
|
||
|
implementation(libs.firebaseCrashlytics)
|
||
|
implementation(libs.firebaseMessaging)
|
||
|
implementation(libs.playServicesCorutines)
|
||
|
}
|