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>