wip: Room list

This commit is contained in:
2025-02-22 18:45:55 +03:00
parent dc588a045d
commit 5fbffd8700
14 changed files with 345 additions and 74 deletions
+7 -8
View File
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Created by sweetbread on 21.02.2025, 12:08
~ Created by sweetbread on 22.02.2025, 15:45
~ Copyright (c) 2025. All rights reserved.
~ Last modified 21.02.2025, 12:07
~ Last modified 22.02.2025, 14:00
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
@@ -22,13 +22,7 @@
tools:targetApi="31">
<activity
android:name=".ui.activity.Login"
android:exported="false"
android:label="@string/title_activity_login"
android:theme="@style/Theme.PixelDragon" />
<activity
android:name=".ui.activity.MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.PixelDragon">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -36,6 +30,11 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.activity.MainActivity"
android:exported="false"
android:theme="@style/Theme.PixelDragon" />
</application>
</manifest>