To prevent Lint warning (replace fragment
with FragmentContainerView
) after upgrading to latest fragments (1.2.2 version) and navigation (2.2.1 version) I replaced fragment with FragmentContainerView
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
....
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
But after that I found error in my @navigation/nav_graph
- This navigation graph is not referenced to any layout files
Everything works fine, but that error is very annoying.