summaryrefslogtreecommitdiff
path: root/android-app/build.gradle
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-25 08:36:29 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-25 08:36:29 +0000
commitb5ab0c5236d7503dc002b7bf04e0e33b9c7ff9fa (patch)
treeeff720d9eba4309111d61a2364a328113280af5a /android-app/build.gradle
parent2432f454c877f084c3ad93202638753e41269be4 (diff)
fix: resolve all Kotlin compilation errors blocking CI build
- 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 <noreply@anthropic.com>
Diffstat (limited to 'android-app/build.gradle')
-rw-r--r--android-app/build.gradle1
1 files changed, 1 insertions, 0 deletions
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