| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 27 |
| |
| defaultConfig { |
| applicationId "com.android.example.appwithdatabinding" |
| minSdkVersion 15 |
| targetSdkVersion 29 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| buildFeatures { |
| dataBinding = true |
| } |
| } |
| |
| dependencies { |
| implementation project(':lib') |
| implementation fileTree(dir: 'libs', include: ['*.jar']) |
| implementation 'androidx.appcompat:appcompat:+' |
| implementation 'androidx.constraintlayout:constraintlayout:+' |
| } |