Small refactor and add FireBase Crashlitycs.

This commit is contained in:
Thomas Andres Gomez 2023-04-06 10:35:10 +02:00
parent 9c8d05e578
commit f6496e485d
9 changed files with 131 additions and 88 deletions

View file

@ -2,6 +2,8 @@ plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics'
id 'dagger.hilt.android.plugin'
id 'org.jetbrains.kotlin.android'
}
@ -130,7 +132,7 @@ dependencies {
implementation "com.github.skydoves:landscapist-glide:1.5.2"
kapt 'com.github.bumptech.glide:compiler:4.13.2' // this have to be align with landscapist-glide
// Reorder element in laylist
// Reorder element in lazylist
implementation "org.burnoutcrew.composereorderable:reorderable:0.9.6"
// Navigation
@ -142,6 +144,10 @@ dependencies {
// Google sign in.
implementation "com.google.android.gms:play-services-auth:20.4.1"
// Firebase
implementation platform('com.google.firebase:firebase-bom:31.3.0')
implementation 'com.google.firebase:firebase-crashlytics'
// RetroFit & Gson for webservice call
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'