What is difference between ActivityRetainedComponent @ActivityRetainedScope and ActivityComponent @ActivityScoped in dagger hilt android
What is difference between ActivityRetainedComponent @ActivityRetainedScope and ActivityComponent @ActivityScoped in dagger hilt android
5.6k Views Asked by Abhijith mogaveera At
2
Based on the documents.
ActivityRetainedComponent
lives across configuration changes, so it is created at the first onCreate and last onDestroy, and when you mark your dependencies inActivityRetainedComponent
with@ActivityRetainedScope
its guarantees that your object will be a singleton and survive across configuration changes. ButActivityComponent
created atonCreate
and destroyed atonDestroy
. and when you mark your dependencies inActivityComponent
with@ActivityScope
its guarantees that your object will be a singleton butActivityComponent
will be destroyed in configuration changes.