Is it possible to have a model view shared across two or more activities?
if I simply add two instances of the viewModel in each activity
val vmWord: WordViewModel by viewModel()
I've see the WordViewModel constructor called twice when apparently it should behave like a singleton.
What I'm trying to achieve is : I have a list of composite objects and I intend to launch an editor activity for each kind.
Thanks a lot