From cc76e4f3cc4e4d958f398ed2899a8d653815985b Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sun, 15 Mar 2026 06:52:23 +0000 Subject: fix: move weather feature to org/terst/nav package directories Package declarations were already org.terst.nav.* but files lived under com/example/androidapp/. Kotlin 2.0 (K2) compiler on CI fails when package declarations don't match directory structure during kapt stub generation. Moved all 20 files to their correct locations and renamed MainActivity (weather) -> WeatherActivity to avoid confusion with the nav app's MainActivity. Co-Authored-By: Claude Sonnet 4.6 --- .../debug/processDebugManifest/AndroidManifest.xml | 43 +++++++++++----------- 1 file changed, 21 insertions(+), 22 deletions(-) (limited to 'android-app/app/build/intermediates/merged_manifests') diff --git a/android-app/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml b/android-app/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml index 4d32e28..e23803c 100644 --- a/android-app/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml +++ b/android-app/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml @@ -9,9 +9,11 @@ android:targetSdkVersion="34" /> + + - @@ -44,7 +45,7 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/Theme.AndroidApp" > + android:theme="@style/Theme.Nav" > @@ -58,6 +59,10 @@ + + + + + + - - - - - - - -