I\'m getting
Warning: library class android.databinding.DataBindingUtil depends on program class android.databinding.DataBindingComponent
I get this
Try adding the following to your proguard config:
-dontwarn android.databinding.**
-keep class <whatever your package name in AndroidManifest is>.databinding.** {
<fields>;
<methods>;
}
The first line gets rid of the warning, and the second tells proguard to not mess with any of the generated classes.