ref: open Login from MainActivity, not vice versa

This commit is contained in:
2025-11-08 20:40:56 +03:00
parent 28337b1306
commit b6e8c73758
3 changed files with 25 additions and 20 deletions
+3 -4
View File
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Created by sweetbread on 22.02.2025, 15:45
~ Created by sweetbread
~ Copyright (c) 2025. All rights reserved.
~ Last modified 22.02.2025, 14:00
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
@@ -21,7 +20,7 @@
android:theme="@style/Theme.PixelDragon"
tools:targetApi="31">
<activity
android:name=".ui.activity.Login"
android:name=".ui.activity.MainActivity"
android:exported="true"
android:theme="@style/Theme.PixelDragon">
<intent-filter>
@@ -32,7 +31,7 @@
</activity>
<activity
android:name=".ui.activity.MainActivity"
android:name=".ui.activity.Login"
android:exported="false"
android:theme="@style/Theme.PixelDragon" />
</application>