Update build tools

This commit is contained in:
Peter Osterlund
2021-06-06 02:26:55 +02:00
parent 457cc1db37
commit fe7a8fac11
4 changed files with 23 additions and 10 deletions

View File

@@ -3,8 +3,6 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 28
dataBinding.enabled = true
defaultConfig {
applicationId "org.petero.cuckoochess"
minSdkVersion 14
@@ -35,10 +33,18 @@ android {
}
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
buildFeatures {
dataBinding true
}
}
dependencies {