Dalam update dokumen 2.6 (https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.0), "LiveDataReactiveStreams" telah diubah menjadi konversi Kotlin.

contoh:
//sebelumnya
val tourism = LiveDataReactiveStreams.fromPublisher(tourismUseCase.getAllTourism())
//setelahnya
val tourism = tourismUseCase.getAllTourism().toLiveData()