Skip to content

Commit

Permalink
[DEV][firebase crash implementation]
Browse files Browse the repository at this point in the history
  • Loading branch information
Emre Esen authored and Emre Esen committed Feb 10, 2024
1 parent 27a48b2 commit 704d0b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
id 'androidx.navigation.safeargs.kotlin'
id 'kotlin-parcelize'
id 'org.jlleitschuh.gradle.ktlint' version '12.1.0'
id 'com.google.firebase.crashlytics'
id "com.google.gms.google-services"
}

task installGitHooks(type: Copy) {
Expand Down Expand Up @@ -43,7 +45,11 @@ android {
}

buildTypes {
release {
debug {
applicationIdSuffix = '.debug'
}

relaase {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
Expand Down Expand Up @@ -101,6 +107,11 @@ dependencies {
implementation 'com.airbnb.android:lottie:5.0.3'
implementation 'com.github.gayanvoice:android-animations-kotlin:1.0.1'

// Firebase
implementation(platform('com.google.firebase:firebase-bom:32.7.2'))
implementation 'com.google.firebase:firebase-crashlytics'
implementation 'com.google.firebase:firebase-analytics'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ plugins {
id 'com.google.dagger.hilt.android' version '2.44' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.5.3' apply false
id 'androidx.navigation.safeargs' version '2.4.2' apply false
id 'com.google.gms.google-services' version '4.4.1' apply false
id 'com.google.firebase.crashlytics' version '2.9.9' apply false
}

0 comments on commit 704d0b0

Please sign in to comment.