I\'m trying to use data-binding with Android.
I can not anymore build my project. I got this error :
\"Error:(13, 46) error: package ch.compan
if you tried this steps
android.databinding.enableV2=false
android.enableExperimentalFeatureDatabinding=true
and checking all xml files looks good. then you should go with this solution, add below code in project level build.gradle
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}
this will give you exact error where you have actual error explanation: above code will increase the size of the compile error