Skip to content

Commit 1caddfd

Browse files
committed
[CHORE/#202] Firebase Analytics, Crashlytics 의존성 추가
1 parent a6297e1 commit 1caddfd

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

app/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
id("orbit.android.compose")
44
alias(libs.plugins.google.service)
55
alias(libs.plugins.firebase.app.distribution)
6+
alias(libs.plugins.firebase.crashlytics)
67
}
78

89
android {
@@ -38,4 +39,6 @@ dependencies {
3839
implementation(projects.feature.mission)
3940
implementation(projects.feature.setting)
4041
implementation(projects.feature.navigator)
42+
implementation(libs.firebase.analytics)
43+
implementation(libs.firebase.crashlytics)
4144
}

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ plugins {
1111
alias(libs.plugins.compose.compiler) apply false
1212
alias(libs.plugins.google.service) apply false
1313
alias(libs.plugins.firebase.app.distribution) apply false
14+
alias(libs.plugins.firebase.crashlytics) apply false
1415
// alias(libs.plugins.sentry) apply false
1516
}
1617

gradle/libs.versions.toml

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ gson = "2.11.0"
6060
google-service = "4.4.2"
6161
firebase-bom = "33.1.1"
6262
firebase-app-distribution = "5.1.0"
63+
firebase-crashlytics = "3.0.3"
6364

6465
## Test
6566
junit = "4.13.2"
@@ -152,6 +153,7 @@ gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
152153
# Google Libraries
153154
firebase-bom = { group = "com.google.firebase", name = "firebase-bom", version.ref = "firebase-bom" }
154155
firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics-ktx" }
156+
firebase-crashlytics = { group = "com.google.firebase", name = "firebase-crashlytics-ktx" }
155157
firebase-config = { group = "com.google.firebase", name = "firebase-config-ktx" }
156158

157159
## Logging
@@ -190,4 +192,5 @@ android-test = { id = "com.android.test", version.ref = "android-gradle-plugin"
190192
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
191193
google-service = { id = "com.google.gms.google-services", version.ref = "google-service" }
192194
firebase-app-distribution = { id = "com.google.firebase.appdistribution", version.ref = "firebase-app-distribution" }
195+
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebase-crashlytics" }
193196
#sentry = { id = "io.sentry.android.gradle", version.ref = "sentry" }

0 commit comments

Comments
 (0)