Skip to content

Commit

Permalink
Merge pull request #322 from static-var/crashlytics
Browse files Browse the repository at this point in the history
fix: Add crashlytics dependency
  • Loading branch information
static-var authored Jul 7, 2024
2 parents 0697d67 + 4213020 commit 9f009c7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ plugins {
alias(libs.plugins.secrets.plugin)
alias(libs.plugins.baselineprofile)
alias(libs.plugins.firebase.perf)
alias(libs.plugins.firebase.crashlytics)
alias(libs.plugins.room)
alias(libs.plugins.gms.plugin)
id("vlr.detekt")
Expand Down Expand Up @@ -143,6 +144,7 @@ dependencies {
implementation(platform(libs.firebase.bom))
implementation(libs.firebase.perf)
implementation(libs.firebase.messaging)
implementation(libs.firebase.crashlytics)


implementation(libs.bundles.lifecycle)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
id("vlr.detekt")
id("vlr.ktfmt")
alias(libs.plugins.androidTest) apply false
alias(libs.plugins.jetbrainsKotlinJvm) apply false
alias(libs.plugins.firebase.crashlytics) apply false
}

buildscript {
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ detektCompose = "0.3.11"
benchmark = "1.2.4"
sentry = "4.6.0"
sentry-sdk = "7.9.0"
detekt = "1.23.5"
detekt = "1.23.6"
gradle = "8.5.0"
hilt = '2.50'
hiltAndroidGradlePlugin = "2.50"
Expand All @@ -13,10 +13,9 @@ firebase = "33.1.1"
accompanist = "0.35.0-alpha"
coroutines = "1.8.1"
ktor = "2.3.7"
ksp = "2.0.0-1.0.21"
ksp = "2.0.0-1.0.22"
spotless = "6.25.0"
hiltCompiler = "1.2.0"
jetbrainsKotlinJvm = "1.9.23"


[libraries]
Expand Down Expand Up @@ -45,9 +44,10 @@ compose-m3-adaptive-android = { module = "androidx.compose.material3.adaptive:ad
compose-m3-adaptive-layout = { module = "androidx.compose.material3.adaptive:adaptive-layout", version = "1.0.0-beta04" }
compose-m3-adaptive-navigation = { module = "androidx.compose.material3.adaptive:adaptive-navigation", version = "1.0.0-beta04" }

firebase-bom = {module = "com.google.firebase:firebase-bom", version.ref = "firebase"}
firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebase" }
firebase-messaging = { module = "com.google.firebase:firebase-messaging-ktx" }
firebase-perf = { module = "com.google.firebase:firebase-perf" }
firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics" }

m3 = { module = "androidx.compose.material3:material3" }

Expand Down Expand Up @@ -165,6 +165,6 @@ baselineprofile = { id = "androidx.baselineprofile", version.ref = "benchmark" }
room = { id = "androidx.room", version.ref = "room" }
androidTest = { id = "com.android.test", version.ref = "gradle" }
sentry-plugin = { id = "io.sentry.android.gradle", version.ref = "sentry" }
firebase-perf = {id = "com.google.firebase.firebase-perf", version = "1.4.2"}
firebase-perf = { id = "com.google.firebase.firebase-perf", version = "1.4.2" }
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version = "3.0.2" }
gms-plugin = { id = "com.google.gms.google-services", version = "4.4.2" }
jetbrainsKotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "jetbrainsKotlinJvm" }

0 comments on commit 9f009c7

Please sign in to comment.