Add: Enable viewbinding and databinding

This commit is contained in:
Carlos Martinez
2021-06-15 21:24:42 -04:00
parent 34007026e0
commit 4449376031
2 changed files with 13 additions and 6 deletions

View File

@@ -1,10 +1,7 @@
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
}
apply from: '../versions.gradle'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion build_versions.target_sdk
@@ -51,6 +48,11 @@ android {
lintOptions {
abortOnError false
}
buildFeatures {
viewBinding true
dataBinding true
}
}
dependencies {