I am using compose deep link navigation.
I have two composable’s
composable(
route = StatusRouteNavigation.STATUS_LANDING,
deepLinks = listOf(
navDeepLink {
uriPattern = "${BuildConfig.DOMAIN_URL}us/en/manage/status.html"
}
)
)
composable(
route = StatusRouteNavigation.DETAILS,
deepLinks = listOf(
navDeepLink {
uriPattern = "${BuildConfig.DOMAIN_URL}us/en/manage/status.html?page=de&no={number}&on={date}"
}
)
)
The problem here is that. When I click the url in android device it always navigates to the details page.
Are there any option to handle deeplinking in this scenario?