From ead085ad2655e5a1ff0b1391e35c05e1c0f7b344 Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 16 Mar 2026 20:39:08 +0100 Subject: [PATCH] fix(android): move MainActivity to correct package to fix ClassNotFoundException The namespace/applicationId is `de.jeanlucmakiola.household_keeper` but MainActivity was in the old `com.jlmak.household_keeper` package, causing a crash on launch. Co-Authored-By: Claude Opus 4.6 --- .../jeanlucmakiola}/household_keeper/MainActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename android/app/src/main/kotlin/{com/jlmak => de/jeanlucmakiola}/household_keeper/MainActivity.kt (68%) diff --git a/android/app/src/main/kotlin/com/jlmak/household_keeper/MainActivity.kt b/android/app/src/main/kotlin/de/jeanlucmakiola/household_keeper/MainActivity.kt similarity index 68% rename from android/app/src/main/kotlin/com/jlmak/household_keeper/MainActivity.kt rename to android/app/src/main/kotlin/de/jeanlucmakiola/household_keeper/MainActivity.kt index 837717a..4602b07 100644 --- a/android/app/src/main/kotlin/com/jlmak/household_keeper/MainActivity.kt +++ b/android/app/src/main/kotlin/de/jeanlucmakiola/household_keeper/MainActivity.kt @@ -1,4 +1,4 @@ -package com.jlmak.household_keeper +package de.jeanlucmakiola.household_keeper import io.flutter.embedding.android.FlutterActivity