2023-04-05 20:26:53 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:id="@+id/home_navigation"
|
|
|
|
|
app:startDestination="@id/gamesFragment">
|
|
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/gamesFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.ui.GamesFragment"
|
|
|
|
|
android:label="PlatformGamesFragment" />
|
|
|
|
|
|
|
|
|
|
<fragment
|
2023-04-27 22:59:01 -04:00
|
|
|
android:id="@+id/homeSettingsFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.HomeSettingsFragment"
|
2023-05-01 16:33:21 -04:00
|
|
|
android:label="HomeSettingsFragment" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_homeSettingsFragment_to_aboutFragment"
|
|
|
|
|
app:destination="@id/aboutFragment" />
|
2023-05-08 04:49:32 -04:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_homeSettingsFragment_to_earlyAccessFragment"
|
|
|
|
|
app:destination="@id/earlyAccessFragment" />
|
2023-05-01 16:33:21 -04:00
|
|
|
</fragment>
|
2023-04-05 20:26:53 -04:00
|
|
|
|
2023-04-19 22:42:18 -04:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/firstTimeSetupFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.SetupFragment"
|
|
|
|
|
android:label="FirstTimeSetupFragment" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_firstTimeSetupFragment_to_gamesFragment"
|
2023-04-26 21:38:03 -04:00
|
|
|
app:destination="@id/gamesFragment"
|
|
|
|
|
app:popUpTo="@id/firstTimeSetupFragment"
|
|
|
|
|
app:popUpToInclusive="true" />
|
2023-04-19 22:42:18 -04:00
|
|
|
</fragment>
|
|
|
|
|
|
2023-04-29 18:35:28 -04:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/searchFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.SearchFragment"
|
|
|
|
|
android:label="SearchFragment" />
|
|
|
|
|
|
2023-05-01 16:33:21 -04:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/aboutFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.AboutFragment"
|
2023-06-02 03:10:08 -04:00
|
|
|
android:label="AboutFragment" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_aboutFragment_to_licensesFragment"
|
|
|
|
|
app:destination="@id/licensesFragment" />
|
|
|
|
|
</fragment>
|
2023-05-01 16:33:21 -04:00
|
|
|
|
2023-05-08 04:49:32 -04:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/earlyAccessFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.EarlyAccessFragment"
|
|
|
|
|
android:label="EarlyAccessFragment" />
|
|
|
|
|
|
2023-06-02 03:10:08 -04:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/licensesFragment"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.fragments.LicensesFragment"
|
|
|
|
|
android:label="LicensesFragment" />
|
|
|
|
|
|
2023-06-11 19:54:54 -04:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/emulationActivity"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
|
|
|
|
|
android:label="EmulationActivity">
|
|
|
|
|
<argument
|
|
|
|
|
android:name="game"
|
2023-08-29 02:44:11 -04:00
|
|
|
app:argType="org.yuzu.yuzu_emu.model.Game"
|
|
|
|
|
app:nullable="true"
|
|
|
|
|
android:defaultValue="@null" />
|
2023-06-11 19:54:54 -04:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_global_emulationActivity"
|
|
|
|
|
app:destination="@id/emulationActivity"
|
|
|
|
|
app:launchSingleTop="true" />
|
|
|
|
|
|
2023-08-22 19:46:07 -04:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/settingsActivity"
|
|
|
|
|
android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsActivity"
|
|
|
|
|
android:label="SettingsActivity">
|
|
|
|
|
<argument
|
|
|
|
|
android:name="game"
|
|
|
|
|
app:argType="org.yuzu.yuzu_emu.model.Game"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="menuTag"
|
2023-09-14 15:05:44 -04:00
|
|
|
app:argType="org.yuzu.yuzu_emu.features.settings.model.Settings$MenuTag" />
|
2023-08-22 19:46:07 -04:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_global_settingsActivity"
|
|
|
|
|
app:destination="@id/settingsActivity" />
|
|
|
|
|
|
2023-04-05 20:26:53 -04:00
|
|
|
</navigation>
|