Skip to content

Commit

Permalink
Merge pull request #165 from Team-Sopetit/feature/#164-hotfix-firebas…
Browse files Browse the repository at this point in the history
…e-crashlytics

#164[hotfix] firebase crashlytics 연동
  • Loading branch information
stellar-halo authored Mar 8, 2024
2 parents 5509d18 + 3cb3c6b commit a45acaf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
id("kotlin-parcelize")
id("org.jlleitschuh.gradle.ktlint")
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.0"
id("com.google.gms.google-services")
id("com.google.firebase.crashlytics")
}

android {
Expand All @@ -33,6 +35,7 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("debug")
}
}

Expand Down Expand Up @@ -108,8 +111,9 @@ dependencies {
implementation("androidx.exifinterface:exifinterface:1.3.7")

// Firebase
implementation(platform("com.google.firebase:firebase-bom:29.0.0"))
implementation("com.google.firebase:firebase-analytics-ktx")
implementation(platform("com.google.firebase:firebase-bom:32.7.3"))
implementation("com.google.firebase:firebase-analytics")
implementation("com.google.firebase:firebase-crashlytics")
implementation("com.google.android.gms:play-services-tagmanager:18.0.4")

// viewPager2
Expand Down
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ plugins {
id("org.jlleitschuh.gradle.ktlint") version "11.0.0" apply false
id("androidx.navigation.safeargs.kotlin") version "2.5.1" apply false
id("com.google.firebase.crashlytics") version "2.9.9" apply false
id("com.google.gms.google-services") version "4.4.1" apply false
}

tasks.register("clean", Delete::class) {
Expand Down

0 comments on commit a45acaf

Please sign in to comment.