<?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/nav_graph"
    app:startDestination="@+id/start_destination">
    <fragment
        android:id="@+id/start_destination"
        android:name="dagger.hilt.android.ViewModelSavedStateOwnerTest$TestFragment">
        <argument
            android:name="argument_key"
            android:defaultValue="fragment_argument"/>
    </fragment>
    <fragment
        android:id="@+id/next_destination"
        android:name="dagger.hilt.android.ViewModelSavedStateOwnerTest$TestFragment">
        <argument
            android:name="argument_key"
            android:defaultValue="next_fragment_argument" />
    </fragment>
</navigation>