is it ok if I specify a companion object in the sh...
# android-architecture
o
is it ok if I specify a companion object in the shared fragment that contains this presenter, adn assign it from the using fragment when its ready?
s
why not use a ViewModel scoped to the activity so you don’t have to do a tacky implementation to share the presenter
o
hmmm
because I’m using MVP, not in a situation where I can implement all of this in a practical manner
but I think that will definitely solve it when I do get the chance to do that