I am getting started for using DataBinding feature. I am facing problem with it.
DataBinding
Error:(21, 9) error: cannot find symbol class ContactL
your model just have getter and setter in androidX. else not find your model in view and show this bug
public class User { String name; public String getName() { return name; } public User(String name) { this.name = name; }
}