Live Data: Candidate resolution will be changed soon

AndroidKotlinAndroid Livedata

Android Problem Overview


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): Unit > defined in androidx.lifecycle.LiveData

As I understand it's happened after updating kotlin 1.4 What does it actually mean ?

Android Solutions


Solution 1 - Android

It means that the extension in androidx is not needed anymore.

Simply remove its import import androidx.lifecycle.observe.

It will be actually deprecated in androidx. Read more reasoning there.

EDIT:

Please note the "issue" from Erik Hoogendoorn > This change causes values from the observed LiveData object to be interpreted as nullable(since the converted lambda syntax is based on nullable Java code). This was not the case for the Kotlin extension and causes a loss in functionality for the user. In my opinion this change should be reverted and a different solution found.

I'm curious if they will rename & retain the helper or come up with another solution.

Solution 2 - Android

AndroidX extension is deprecated, so we have to use the original one.

Remove import androidx.lifecycle.observe

then

viewModel.liveData.observe(viewLifecycleOwner, Observer { result ->
    
})

or

viewModel.liveData.observe(viewLifecycleOwner) { result ->
                
}

Solution 3 - Android

I tried remove the "import androidx.lifecycle.observe" and converted our observers like the following:

// From this
livedata.observe(viewLifecycleOwner, Observer<MyClass?> {
    // do stuff with it
})

// To this
livedata.observe(viewLifecycleOwner) {
    // do stuff with it
}

The issue occured when we need to remove the observer inside the onChange call, e.g.

    // From this
    livedata.observe(viewLifecycleOwner, object : Observer<MyClass?> {
        override fun onChanged(t: MyClass?) {
            // Do stuff with it t
            livedata.removeObserver(this)
        }
    })
    
    // To this
    livedata.observe(viewLifecycleOwner) {
        // do stuff with it
        livedata.removeObserver(this) <--- not working ofc
    }

I've heard rumors that folks have broken out the observer as a variable and thus been able to add/remove it by referencing the variable. However I'm unable to figure out how to instantiate a local observer without using the "Observer syntax.

Solution 4 - Android

The same issue occurred my code base too. The kotlin version is '1.4.32'

After removing below import sentiment, the warning disappeared.

import androidx.lifecycle.observe

Solution 5 - Android

If you are observing LiveData in ViewModel and encountered this issue then you might need to call owner::getLifecycle instead.

class MyViewModel: ViewModel(), DefaultLifecycleObserver {
 
    override fun onCreate(owner: LifecycleOwner) {
        super.onCreate(owner)

        repository.myAwesomeMethod().observe(owner) {
            // This will show warning.
        }
    }
}

Now replace owner with owner::getLifecycle and you are good.

class MyViewModel: ViewModel(), DefaultLifecycleObserver {
 
    override fun onCreate(owner: LifecycleOwner) {
        super.onCreate(owner)

        repository.myAwesomeMethod().observe(owner::getLifecycle) {
            // Do your things
        }
    }
}

Solution 6 - Android

In my case I used Kotlin 1.4.31 in buildgradle(project level) file.

 ext {
    kotlin_version = '1.4.31'
}

 dependencies {
 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}

The warning/deprecation error was gone.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionVahe GharibyanView Question on Stackoverflow
Solution 1 - AndroidhrachView Answer on Stackoverflow
Solution 2 - AndroidBollMoseView Answer on Stackoverflow
Solution 3 - AndroidAtte BackenhofView Answer on Stackoverflow
Solution 4 - Androidburak isikView Answer on Stackoverflow
Solution 5 - AndroidskafleView Answer on Stackoverflow
Solution 6 - AndroidTonnieView Answer on Stackoverflow