From 307820b4d2fc744220e4252ec6ddbef014609e64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nami=2Eand=28=EB=82=98=EB=AF=B8=29?= Date: Thu, 28 Aug 2025 17:38:21 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=9D=B4=EC=96=B4=EB=B2=A0=EC=9D=B4?= =?UTF-8?q?=EC=8A=A4=20crashlytics=20sdk=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 6 ++++++ build.gradle | 1 + 2 files changed, 7 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 341ad9c0..1aa4d9a2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,6 +15,9 @@ plugins { // Add the Google services Gradle plugin id 'com.google.gms.google-services' + + // Add the Firebase Crashlytics Gradle plugin + id 'com.google.firebase.crashlytics' } Properties properties = new Properties() @@ -199,6 +202,9 @@ dependencies { //firebase remote config - update dialog implementation 'com.google.firebase:firebase-config-ktx' + + // Firebase Crashlytics + implementation 'com.google.firebase:firebase-crashlytics-ktx' implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2' implementation 'androidx.activity:activity-compose:1.9.0' diff --git a/build.gradle b/build.gradle index 5167ace7..df178a34 100644 --- a/build.gradle +++ b/build.gradle @@ -9,6 +9,7 @@ buildscript { } dependencies { classpath 'com.google.gms:google-services:4.3.15' + classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6' classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version" classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1" }