We are trying to support implicit deep links in our app. The app uses navigation architecture components with bottom navigation tabs. I want to understand, if its possible to dynamically re route to a particular screen of the android app by writing re routing logic in one place. As per my knowledge, currently its not possible to support deep link without unique uri path for all screens of the app. How do we tackle this problem, if we don't have unique uri path? We have various screens like - homepage, task panel, goal panel, performance review etc. We want to support links like following-
- https://app.abc.com - should open home page of app
- https://app.abc.com/?empId=employeeId&showTaskDetails=true&taskIds=uuidslist - should open taks panel or goal panel based on the query parameters I am able to solve the second problem, where we want to open a specific page based on query parameter but facing issues while using the deep link for first link. Rather than opening homepage screen on " https://app.abc.com", task panel screen is opening up.