Auto completion for ConstraintLayout's contraints would not work (nothing shows up) while writing them inside the <include>
tag.
Data Binding's code generation would not use properly the binding adapter. i.e. instead of will fail calling path.util.DataBindingAdapters.setVisibility(this.user, viewModelIsContentful);
, the generated code is this.user.setVisible(viewModelIsContentful);
which does not exist as this.user
is an instance of UserBinding
and I did not set any variable named visible
.