I want to perform such functionality:
- User opens first activity, and under the hood Dagger starts to initialize singleton, which I will inject on second activity
- Navigates to the second activity, and here I inject this singleton to the activity
I've tried to just stupid inject this class to the first activity, but it not seems like a good solution
All that is needed because I want to perform some local database request in this singleton, and if it is not ready when activity has already started it can be a little bit confusing for user