I have an android EditText which I'm setting the text property on.
Normally I'd use:
editText.text = "Mars"
But the setter returns a Editable so it seems Kotlin is trying to replace the returned Editable with a String which fails.
So the "workaround" is:
editText.setText("Mars")
Are there any prettier ways (instead of setText()) of setting the text when this type of setter is used?