Joao Birk
06/02/2020, 7:29 PMoverride fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
if (currentNavController?.value?.handleDeepLink(intent) == false) {
...
}
}
I understand the problem, basically the currentNavController.value
which has the navigation_graph_2.xml
doesnt have such deep link set...how can I check if other graphs (tabs) support such deep link and then navigate to the desired tab?Fidelity Chauke
06/09/2020, 12:58 PMJoao Birk
06/09/2020, 7:59 PMlaunchMode
on your activity, which would remove the need for onNewIntent()
and NavigationExtensions would handle it for you, since it checks through every graph to find a matching deep link"Fidelity Chauke
06/09/2020, 8:58 PMlaunchMode
in my app so I guess our problems are different. How did you get the help you needed? My question is right above your question and I don't know where to turn.Joao Birk
06/12/2020, 10:17 PM