xref: /aosp_15_r20/external/dagger2/javatests/dagger/hilt/android/res/navigation/nav_graph.xml (revision f585d8a307d0621d6060bd7e80091fdcbf94fe27)
1<?xml version="1.0" encoding="utf-8"?>
2
3<navigation
4    xmlns:android="http://schemas.android.com/apk/res/android"
5    xmlns:app="http://schemas.android.com/apk/res-auto"
6    android:id="@+id/nav_graph"
7    app:startDestination="@+id/start_destination">
8    <fragment
9        android:id="@+id/start_destination"
10        android:name="dagger.hilt.android.ViewModelSavedStateOwnerTest$TestFragment">
11        <argument
12            android:name="argument_key"
13            android:defaultValue="fragment_argument"/>
14    </fragment>
15    <fragment
16        android:id="@+id/next_destination"
17        android:name="dagger.hilt.android.ViewModelSavedStateOwnerTest$TestFragment">
18        <argument
19            android:name="argument_key"
20            android:defaultValue="next_fragment_argument" />
21    </fragment>
22</navigation>