new: integrate GlitchTip for crash logging

This commit is contained in:
2026-07-07 18:38:29 +02:00
parent a272431c37
commit e19a4d1f9f
4 changed files with 15 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# Android app
## Crash logging
GlitchTip is configured in the project. It uses the open source solution Senstry to log crashes
generated by the app and send them to GlitchTip on a European server.
+3
View File
@@ -18,6 +18,9 @@ dependencies {
implementation(libs.androidx.activity.compose)
implementation(libs.compose.uiToolingPreview)
debugImplementation(libs.compose.uiTooling)
// Crash logging
implementation(libs.glitchtips)
}
android {
+4
View File
@@ -20,6 +20,10 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="io.sentry.dsn" android:value="https://c7d665816e7f4823aa48c083b797e730@eu.glitchtip.com/255" />
<meta-data android:name="io.sentry.traces.sample-rate" android:value="0.01" />
</application>
</manifest>