Android databinding "enabled" in build.gradle is deprecated

Viewed 3470

in build.gradle file:

dataBinding {
     enabled = true
 }

enabled is deprecated. Can't find any documentation about it. Anyone has any ideas how to fix it?

1 Answers

try replacing it with

buildFeatures {
    dataBinding true
}
Related