From d1b6f2c525886d0360e505a52139ce8c29cb66a0 Mon Sep 17 00:00:00 2001 From: timklge <2026103+timklge@users.noreply.github.com> Date: Thu, 5 Jun 2025 00:02:36 +0200 Subject: [PATCH] Remove crashlytics references (#138) --- README.md | 4 ---- .../kotlin/de/timklge/karooheadwind/screens/MainScreen.kt | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 9074d9e..d8593ca 100644 --- a/README.md +++ b/README.md @@ -48,10 +48,6 @@ If the app cannot connect to the weather service, it will retry the download eve - Interfaces with [openweathermap.org](https://openweathermap.org) - Uses [karoo-ext](https://github.com/hammerheadnav/karoo-ext) (Apache2-licensed) -## Crashlytics - -This app uses Google Crashlytics for crash reporting to help improve stability and performance. - ## Extension Developers: Headwind Data Type If the user has installed the headwind extension on his karoo, you can stream the headwind data type from other extensions via `karoo-ext`. diff --git a/app/src/main/kotlin/de/timklge/karooheadwind/screens/MainScreen.kt b/app/src/main/kotlin/de/timklge/karooheadwind/screens/MainScreen.kt index 0ff3db0..7f86b59 100644 --- a/app/src/main/kotlin/de/timklge/karooheadwind/screens/MainScreen.kt +++ b/app/src/main/kotlin/de/timklge/karooheadwind/screens/MainScreen.kt @@ -139,7 +139,7 @@ fun MainScreen(close: () -> Unit) { Spacer(Modifier.padding(10.dp)) - Text("Please note that this app periodically fetches weather data from OpenMeteo for your current location. Crashlytics is used for crash reporting to help improve stability.") + Text("Please note that this app periodically fetches weather data from OpenMeteo for your current location.") } } )