mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-22 15:48:56 +00:00
93 lines
3.2 KiB
XML
93 lines
3.2 KiB
XML
<?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
|
|
android:id="@+id/homeSettingsFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.HomeSettingsFragment"
|
|
android:label="HomeSettingsFragment" >
|
|
<action
|
|
android:id="@+id/action_homeSettingsFragment_to_aboutFragment"
|
|
app:destination="@id/aboutFragment" />
|
|
<action
|
|
android:id="@+id/action_homeSettingsFragment_to_earlyAccessFragment"
|
|
app:destination="@id/earlyAccessFragment" />
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/firstTimeSetupFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.SetupFragment"
|
|
android:label="FirstTimeSetupFragment" >
|
|
<action
|
|
android:id="@+id/action_firstTimeSetupFragment_to_gamesFragment"
|
|
app:destination="@id/gamesFragment"
|
|
app:popUpTo="@id/firstTimeSetupFragment"
|
|
app:popUpToInclusive="true" />
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/searchFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.SearchFragment"
|
|
android:label="SearchFragment" />
|
|
|
|
<fragment
|
|
android:id="@+id/aboutFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.AboutFragment"
|
|
android:label="AboutFragment" >
|
|
<action
|
|
android:id="@+id/action_aboutFragment_to_licensesFragment"
|
|
app:destination="@id/licensesFragment" />
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/earlyAccessFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.EarlyAccessFragment"
|
|
android:label="EarlyAccessFragment" />
|
|
|
|
<fragment
|
|
android:id="@+id/licensesFragment"
|
|
android:name="org.yuzu.yuzu_emu.fragments.LicensesFragment"
|
|
android:label="LicensesFragment" />
|
|
|
|
<activity
|
|
android:id="@+id/emulationActivity"
|
|
android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
|
|
android:label="EmulationActivity">
|
|
<argument
|
|
android:name="game"
|
|
app:argType="org.yuzu.yuzu_emu.model.Game"
|
|
app:nullable="true"
|
|
android:defaultValue="@null" />
|
|
</activity>
|
|
|
|
<action
|
|
android:id="@+id/action_global_emulationActivity"
|
|
app:destination="@id/emulationActivity"
|
|
app:launchSingleTop="true" />
|
|
|
|
<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"
|
|
app:argType="org.yuzu.yuzu_emu.features.settings.model.Settings$MenuTag" />
|
|
</activity>
|
|
|
|
<action
|
|
android:id="@+id/action_global_settingsActivity"
|
|
app:destination="@id/settingsActivity" />
|
|
|
|
</navigation>
|