0.27.0
The documentation has been updated.
Navigation
- Renamed
ActivityResultNavigator
base class toActivityNavigator
and moved
navigateTo(ActivityRoute)
to it. With this change the limitation that any
Intent
needs to useFLAG_ACTIVITY_NEW_TASK
is removed. - Removed
ActivityDestination
. InsteadActivityRoute
implementations now
are building the fullIntent
. ForInternalActivityRoute
the route is still
Intent
automatically added to theIntent
and theIntent
is automatically
limited to the current package to prevent hijacking of actions. - Removed the ability to add
ActivityRoute
to aDeepLink
. The same can be achieved
by just launching 2 intents or usingTaskStackBuilder
.