diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-15 07:59:36 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-15 07:59:36 +0000 |
| commit | 4e92a12b47d53ddf85a90a10ea11715d99c41756 (patch) | |
| tree | 0b4fa04a49f6e1530f38ab132d1a8dfd74ab46b1 /android-app/app | |
| parent | a66e96f70b1d46961fc5a3f6324d0d960bc1337b (diff) | |
feat: add Firebase Crashlytics for automatic crash reporting
Wires in firebase-crashlytics-ktx (BOM-managed version) and the
Crashlytics Gradle plugin so every uncaught exception is captured
with a full stack trace in the Firebase console with no code changes
required.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android-app/app')
| -rw-r--r-- | android-app/app/build.gradle | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle index d587376..0d5703d 100644 --- a/android-app/app/build.gradle +++ b/android-app/app/build.gradle @@ -3,6 +3,7 @@ plugins { id 'org.jetbrains.kotlin.android' id 'com.google.gms.google-services' id 'com.google.firebase.appdistribution' + id 'com.google.firebase.crashlytics' id 'kotlin-kapt' } @@ -57,6 +58,7 @@ dependencies { // Firebase implementation platform('com.google.firebase:firebase-bom:32.7.2') implementation 'com.google.firebase:firebase-analytics-ktx' + implementation 'com.google.firebase:firebase-crashlytics-ktx' // AndroidX core implementation 'androidx.core:core-ktx:1.12.0' |
