Disable ViewBinding
If an Android module has viewBinding
enabled, but doesn't contribute any generated ____Binding
objects from layout files which are actually used, then viewBinding
can be disabled.
android {
buildFeatures {
viewBinding = false
}
}