Assigned
Status Update
Comments
se...@google.com <se...@google.com>
ju...@doist.com <ju...@doist.com> #3
Just FYI, yeah it is strong guarantee that was specially designed this way. I keep it open as request to improve documentation
af...@gmail.com <af...@gmail.com> #4
Still seems to be happening in lifecycle 2.6.0
sa...@google.com <sa...@google.com> #5
Re
jb...@google.com <jb...@google.com>
af...@gmail.com <af...@gmail.com> #6
Lifecycle 2.6.1 still has this issue.
Description
Version used:
```
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0'
```
Devices/Android versions reproduced on: all
When assigning live data value using `withContext` the lint shows "Expected non-nullable value [NullSafeMutableLiveData]" error.
Sample code:
```
class TestViewModel : ViewModel() {
private val state = MutableLiveData<Long>()
// This shows "Expected non-nullable value [NullSafeMutableLiveData]" error.
fun brokenLoad() {
viewModelScope.launch {
state.value = withContext(Dispatchers.Default) { 0L }
}
}
// This works fine.
fun load() {
viewModelScope.launch { state.value = giveZero() }
}
private suspend fun giveZero() = withContext(Dispatchers.Default) { 0L }
}
```