I am trying to test data binding as given in the guide here. I have included this in my build.gradle file (of module app) :
compileSdkVersion \'android-MNC\
You may have a problem or mismatch between your model and your layout file. In my case I had:
...
but my model class was like so:
public class MyContact { public String name; public String cellphoneNumber; // <-- Notice the lowercase 'p' }