Skip to content

Commit

Permalink
Crashlytics added in Android App
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaibhav2002 committed Jan 3, 2023
1 parent 13285a7 commit 879f6c6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
kotlin("kapt")
id("com.google.dagger.hilt.android")
id("kotlin-parcelize")
id("com.google.firebase.crashlytics")
id("com.google.gms.google-services")
}

Expand Down Expand Up @@ -70,6 +71,7 @@ dependencies {
implementation("androidx.navigation:navigation-compose:$navVersion")

implementation(platform("com.google.firebase:firebase-bom:31.1.1"))
implementation("com.google.firebase:firebase-crashlytics-ktx")
implementation("com.google.firebase:firebase-analytics-ktx")
}

Expand Down
Binary file modified androidApp/release/androidApp-release.apk
Binary file not shown.
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
buildscript{
dependencies {
// classpath ("com.google.gms:google-services:4.3.3")
classpath ("com.google.firebase:firebase-crashlytics-gradle:2.9.2")
}
}

ext{
set("hiltVersion", "2.44")
set("lifecycleVersion", "2.5.1")
Expand All @@ -19,7 +26,7 @@ plugins {
kotlin("plugin.serialization").version(kotlinVersion)
id("com.google.dagger.hilt.android").version("2.44").apply(false)
id("com.squareup.sqldelight").version(sqlDelightVersion).apply(false)
id("com.google.gms.google-services").version("4.3.13")
id("com.google.gms.google-services").version("4.3.13").apply(false)
}

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

0 comments on commit 879f6c6

Please sign in to comment.