Skip to content

Commit b785942

Browse files
authored
Merge pull request #364 from Runnect/feature/add-firebase-crashlytics-sdk
파이어베이스 crashlytics sdk 추가
2 parents b2141d0 + 307820b commit b785942

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ plugins {
1515

1616
// Add the Google services Gradle plugin
1717
id 'com.google.gms.google-services'
18+
19+
// Add the Firebase Crashlytics Gradle plugin
20+
id 'com.google.firebase.crashlytics'
1821
}
1922

2023
Properties properties = new Properties()
@@ -199,6 +202,9 @@ dependencies {
199202

200203
//firebase remote config - update dialog
201204
implementation 'com.google.firebase:firebase-config-ktx'
205+
206+
// Firebase Crashlytics
207+
implementation 'com.google.firebase:firebase-crashlytics-ktx'
202208

203209
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
204210
implementation 'androidx.activity:activity-compose:1.9.0'

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ buildscript {
99
}
1010
dependencies {
1111
classpath 'com.google.gms:google-services:4.3.15'
12+
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
1213
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
1314
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
1415
}

0 commit comments

Comments
 (0)