问题:
Android Studio项目构建时报错 DSL element android.dataBinding.enabled is obsolete and has been replaced with android
解决方案
旧有的配置
dataBinding {
enabled = true
}
改为这种写法
buildFeatures {
dataBinding = true
}