Does anyone know off-hand the behaviour of `Activi...
# dagger
c
Does anyone know off-hand the behaviour of
ActivityScoped
and
ActivityRetainedScoped
when using
Activity#recreate()
? Activity docs say about recreate:
This results in essentially the same flow as when the Activity is created due to a configuration change
Which leads me to suspect that
ActivityScoped
deps will be recreated, and
ActivityRetainedScoped
deps will not.
Ok I put together a test app to check, and confirmed that the behaviour is identical to an ordinary configuration change