In same cases Android studio displays warning message when I call observe
method of LiveData
object
viewModel.emailValidationResult.observe(viewLifecycleOwner, {onEmailChanged(it)})
Candidate resolution will be changed soon, please use fully qualified name to invoke the following closer candidate explicitly:
public open fun observe(owner: LifecycleOwner, observer: Observer<in Int?>): Unit defined in androidx.lifecycle.LiveData
As I understand it's happened after updating kotlin 1.4 What does it actually mean ?