to make this work I had to construct the observer ...
# android
c
to make this work I had to construct the observer separately, like so:
Copy code
val observer = object : Observer<Conversion> {
            override fun onChanged(t: Conversion?) {
                println("observer called.. !")
            }
        }
but it’s probably because the code completion did not fill in the onChanged and the syntax was not the same… 🙂