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 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 20:39:08 +01:00
parent 74a801c6f2
commit ead085ad26

View File

@@ -1,4 +1,4 @@
package com.jlmak.household_keeper package de.jeanlucmakiola.household_keeper
import io.flutter.embedding.android.FlutterActivity import io.flutter.embedding.android.FlutterActivity