From b5ab0c5236d7503dc002b7bf04e0e33b9c7ff9fa Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Wed, 25 Mar 2026 08:36:29 +0000 Subject: fix: resolve all Kotlin compilation errors blocking CI build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Migrate kapt → KSP (Kotlin 2.0 + kapt is broken; KSP is the supported path) - Fix duplicate onResume() override in MainActivity - Fix wrong package imports: com.example.androidapp.data.model → org.terst.nav.data.model across GribFileManager, GribStalenessChecker, SatelliteGribDownloader, LogbookFormatter, LogbookPdfExporter, IsochroneRouter, AnchorWatchHandler - Create missing SensorData, ApparentWind, TrueWindData, TrueWindCalculator classes - Inline missing ScopeCalculator formula (Pythagorean) in AnchorWatchState Co-Authored-By: Claude Sonnet 4.6 --- android-app/build.gradle | 1 + 1 file changed, 1 insertion(+) (limited to 'android-app/build.gradle') diff --git a/android-app/build.gradle b/android-app/build.gradle index edacb05..195123b 100644 --- a/android-app/build.gradle +++ b/android-app/build.gradle @@ -3,6 +3,7 @@ plugins { id 'com.android.application' version '8.3.2' apply false id 'com.android.library' version '8.3.2' apply false id 'org.jetbrains.kotlin.android' version '2.0.0' apply false + id 'com.google.devtools.ksp' version '2.0.0-1.0.21' apply false id 'com.google.gms.google-services' version '4.4.1' apply false id 'com.google.firebase.appdistribution' version '4.0.1' apply false id 'com.google.firebase.crashlytics' version '3.0.2' apply false -- cgit v1.2.3