Add Android app implementation with core features

Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-11-14 17:24:17 +00:00
parent 3069fcd8ba
commit 976d494d9f
28 changed files with 1784 additions and 3 deletions

View file

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.DienstplanNRW"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DutyEntryActivity"
android:label="@string/duty_entry_title"
android:parentActivityName=".MainActivity" />
<activity
android:name=".ResultsActivity"
android:label="@string/results_title"
android:parentActivityName=".MainActivity" />
</application>
</manifest>