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 .databinding.** { ; ; }
The first line gets rid of the warning, and the second tells proguard to not mess with any of the generated classes.