Compiler complains that `@BindingConversion` annot...
# announcements
b
Compiler complains that
@BindingConversion
annotated methods need to be “public static”, not sure how to fix this:
Copy code
@BindingConversion
@JvmStatic fun convertToString(s: ObservableString): String {
    return s.get()
}