I am getting started for using DataBinding feature. I am facing problem with it.
DataBinding
Error:(21, 9) error: cannot find symbol class ContactL
In my project it was a trouble in:
android:text="@{safeUnbox(viewmodel.population)}"
So I've wrapped it in String.valueOf() :
String.valueOf()
android:text="@{String.valueOf(safeUnbox(viewmodel.population))}"
And it was resolved