I was able to access the below when I'm in Jetpack Compose 1.1.1
import androidx.savedstate.ViewTreeSavedStateRegistryOwner
However, when switching over to Jetpack Compose 1.2.0, I can no longer access it. It errors out stating
Unresolved reference: ViewTreeSavedStateRegistryOwner
e.g. In the view, I'm using it as below
ViewTreeSavedStateRegistryOwner.set(this, ViewTreeSavedStateRegistryOwner.get(composeView))
Is there any way I can still access it?