DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'
Gets following warning when building the project
DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'.
I am using Android Studio Canary 6
Solution 1:
Starting from Android Gradle Plugin 4.0.0-alpha05
there is a new block called buildFeatures
to enable build features.
So in order to enable databinding with new AGP plugin you have do like following in module (ex: app) level gradle file
build.gradle ( Groovy DSL )
// shorter version
// android.buildFeatures.dataBinding true
// longer version
android {
buildFeatures {
dataBinding true
// for view binding:
// viewBinding true
}
}
build.gradle.kts ( Kotlin DSL )
// shorter version
// android.buildFeatures.dataBinding = true
// longer version
android {
buildFeatures {
dataBinding = true
// for view binding:
// viewBinding = true
}
}
Reference: https://developer.android.com/studio/releases/gradle-plugin#buildFeatures
Solution 2:
Put it in build.gradle(app level).It will work with android studio version greater than or equal to 4.0.0.
android {
buildFeatures{
dataBinding true // for data binding
viewBinding true // for view binding
}
}
Solution 3:
This warning occurs because
dataBinding {
enabled=true
}
viewBinding {
enabled=true
}
This code style is deprecated and it will remove from the gradle version 5 now if you still want to use this then you can use androidx legacy support dependencies
in app lavel build.gradle
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
otherwise you can use new code style to enable data binding and view binding
like this
android {
buildFeatures {
dataBinding = true
// for view binding:
// viewBinding = true
}
}
Solution 4:
Put this code in Gradle Scripts >> build.gradle(Module: appName.app)
after the buildTypes, include the data biding code
buildTypes {
release {
.......
........
}
}
//here is the code...
buildFeatures {
dataBinding = true
}
That's all :)
Solution 5:
If you're looking for the new feature viewBinding
, try this for Groovy
android {
...
buildFeatures {
viewBinding true
}
}
and this for Kotlin
android {
...
buildFeatures {
viewBinding true
}
}
But, to use the default android data binding
android {
...
buildFeatures {
dataBinding true
}
}
also, be aware to use
kapt "com.android.databinding:compiler:4.0.0"