Starting with Kotlin Coroutines version 1.5.0 , BroadcastChannel and ConflatedBroadcastChannel were marked as ObsoleteCoroutinesApi and developers should now use SharedFlow and StateFlow instead…
If you’ve ever done JSON deserialising (that is, taking a string of JSON and transforming it into an object in your Android app), you’ve almost certainly used the Gson library at some point. And…