Surviving Android Process Death With SavedStateFlow
I was perusing Reddit the other day when someone asked how they could use SavedStateHandle
with a StateFlow
similar to the SavedStateHandle.getLiveData()
version. The most upvoted comment originally was saying that this functionality is not officially supported, but one could convert the LiveData
to a Flow
using the LiveData.asFlow()
extension function. That seemed pretty simple for anyone to do, however testing that would then require using LiveData
in your tests which might be annoying if you were using StateFlow
to manage state. So after looking over the API, it seemed pretty simple to write a wrapper that could expose this functionality directly as a StateFlow
and that is how the SavedStateFlow library was made!