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\
// This is under activity_main xml .
// This is Student Class
public class Student {
public String firstname ; public String lastname ;
public Student(String firstname , String lastname) { this.firstname = firstname; this.lastname = lastname; }
}