Ahmed
06/15/2026, 9:02 AM2.3.21 -> 2.4.0 brakes my (nested) navigation. I attached debugger and there was continuous recomposition due to which navigation struggled. Navigating to a new route will always return me back to the initial tab. I have checked release notes and I can't seem to point out any breaking changes that can cause this. Downgrading fixes the navigation. Is there something I need to know or check on why it breaks the navigation?Ahmed
06/15/2026, 9:06 AMfun NavGraphBuilder.quickSearchRoute(
externalGraph: NavGraphBuilder.(navController: NavController),
) {
compose<Route>() {
NavHost(startDestination) {
compose<InnerRouteA> {…}
compose<InnerRouteB> {…}
// InnerRouteC
externalGraph(nestedNavController)
}
}
}Ahmed
06/15/2026, 9:08 AMRoute continuously recomposes on 2.4.0shikasd
06/16/2026, 4:33 AM