I am using the Room database from Android architecture component. So for LiveData
I am implementing the LifecycleRegistryOwner
interface in my activity. As there is alternative solution to use LifeCyceActivity
but my activity is already extending BaseActivity
so I can't do it.
What is alternative of LifecycleRegistryOwner
?
From the docs :
This interface was deprecated in API level 1.0.0. Use android.support.v7.app.AppCompatActivity which extends LifecycleOwner, so there are no use cases for this class.
Link here