2023-05-30 08:48:59 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-03-18 13:16:11 +05:30
|
|
|
<!--
|
|
|
|
|
~ // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
|
|
|
~ // Notice: All information contained herein is, and remains
|
|
|
|
|
~ // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
|
|
|
~ // if any. The intellectual and technical concepts contained
|
|
|
|
|
~ // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
~ // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
|
|
|
~ // patents in process, and are protected by trade secret or copyright law.
|
|
|
|
|
~ // Dissemination of this information or reproduction of this material
|
|
|
|
|
~ // is strictly forbidden unless prior written permission is obtained
|
|
|
|
|
~ // from ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
-->
|
|
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:id="@+id/mobile_navigation"
|
2023-07-11 16:56:26 +05:30
|
|
|
app:startDestination="@+id/loginFragment">
|
2023-05-30 08:48:59 +05:30
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/nav_home"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.HomeFragment"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:label="@string/menu_home"
|
2023-06-08 19:27:34 +05:30
|
|
|
app:popUpToInclusive="true"
|
|
|
|
|
app:popUpTo="@id/nav_home"
|
2023-05-30 08:48:59 +05:30
|
|
|
tools:layout="@layout/fragment_home" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_nav_home_to_mainActivity"
|
|
|
|
|
app:destination="@id/mainActivity" />
|
2023-07-11 16:56:26 +05:30
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_nav_home_to_loginFragment"
|
|
|
|
|
app:destination="@id/loginFragment"
|
|
|
|
|
app:popUpToInclusive="true"/>
|
2023-05-30 08:48:59 +05:30
|
|
|
</fragment>
|
|
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/nav_profile"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.PanelFragment"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:label="@string/profile"
|
2023-05-30 08:48:59 +05:30
|
|
|
tools:layout="@layout/fragment_gallery" />
|
|
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/nav_settings"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.SlideshowFragment"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:label="@string/action_settings"
|
2023-05-30 08:48:59 +05:30
|
|
|
tools:layout="@layout/fragment_slideshow" />
|
2024-03-25 17:12:24 +05:30
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/nav_about"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.AboutFragment"
|
2024-03-25 17:12:24 +05:30
|
|
|
android:label="@string/action_about"
|
|
|
|
|
tools:layout="@layout/fragment_about" />
|
2024-03-09 15:20:49 +05:30
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/nav_activity"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.ActivitiesFragment"
|
2024-03-09 15:20:49 +05:30
|
|
|
android:label="@string/action_activity"
|
|
|
|
|
tools:layout="@layout/fragment_activities" />
|
2023-05-30 08:48:59 +05:30
|
|
|
<activity
|
|
|
|
|
android:id="@+id/mainActivity"
|
2023-06-28 12:41:18 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.MainActivity"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:label="MainActivity" />
|
2023-07-07 16:07:58 +05:30
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/loginFragment"
|
2025-01-17 17:27:50 +05:30
|
|
|
android:name="com.example.hpostesting.presentation.main_base.ui.LoginFragment"
|
2024-03-28 16:32:21 +05:30
|
|
|
android:label="@string/login"
|
2023-07-07 17:01:02 +05:30
|
|
|
tools:layout="@layout/fragment_login" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_loginFragment_to_homeFragment"
|
|
|
|
|
app:destination="@id/nav_home"
|
|
|
|
|
app:popUpTo="@id/mobile_navigation"
|
|
|
|
|
app:popUpToInclusive="true"/>
|
|
|
|
|
</fragment>
|
2023-08-04 13:41:51 +05:30
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
</navigation>
|