Open shivaramki opened 6 years ago
I got this error too. Is it possible to fix it?
I added this class and the error went away. However I ran into other problems I just gave up after serveral hours of trying
public class DatepickerBindingAdapter {
@BindingAdapter({"isDone"})
public static void setIsDone(Toolbar toolbar, ObservableBoolean isDone) {
}
@BindingAdapter({"isVisible"})
public static void setIsVisibleBoolean(TextView textView, boolean isVisible) {
}
@BindingAdapter({"isVisible"})
public static void setIsVisibleBooleanObs(LinearLayout source, ObservableBoolean isVisible) {
}
}
Steps to recreate the error
implementation 'com.github.skedgo:DateTimeRangePicker:v1.3'
in build gradle.dataBinding { enabled = true }
.Run the app.