Is it necessary to call removeObserver for LiveDat...
# android
k
Is it necessary to call removeObserver for LiveData in a retained fragment? If so, where and when should this be done?
a
If you dont call observeForever then you dont need to call removeObserver
k
ok, thank you!