Do you use `Router/Navigator` pattern in your apps...
# android-architecture
g
Do you use
Router/Navigator
pattern in your apps? If yes, do you inject it into the ViewModel or activity? I've been using it for a while, for the sake of SRP and stuff.. but honestly it's tightly coupled with activity/fragment anyways (context, animations, fragmentManager, etc) so I hardly see any benefit of another abstraction.
s
Why inject it into Presenters, but we use Conductor, so it's probably easier then with Fragments..