Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Latest commit

 

History

History
47 lines (37 loc) · 2.37 KB

README.md

File metadata and controls

47 lines (37 loc) · 2.37 KB

data-binding-sample

see more Data Binding Guide.

Samples

multi dex

multi-dex-keep.txt

-keep public class * extends android.databinding.ViewDataBinding {
 *;
}

build.gradle

android {
  defaultConfig {
    multiDexEnabled = true
    multiDexKeepProguard file('multi-dex-keep.txt')
  }

Proguard

-dontwarn android.databinding.**