Hi everyone. So I have a question to do with andro...
# navigation-architecture-component
f
Hi everyone. So I have a question to do with android navigation components and bottomNavigationView. I have been following the code https://github.com/android/architecture-components-samples/tree/master/NavigationAdvancedSample where we have a custom 
BottomNavigationView.setupWithNavController()
 to accommodate multiple backstacks in different navigation files. The problem I encounter is navigating to another nav_graph dynamically from any given nav_graph. In my case I want to go to an authentication flow whenever my session expires. I tried using 
<include app:graph="@navigation/nav_auth" />
 from within my other nave graphs and the app crashes. Appreciate any assistance I can get.