This commit is contained in:
Michele Balistreri 2019-03-27 13:08:02 +03:00
parent 425d085716
commit f4dd1d17cf
3 changed files with 22 additions and 0 deletions

View File

@ -11,6 +11,15 @@ android {
versionCode 201
versionName "2.0.1"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}
dependencies {

View File

@ -22,3 +22,7 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}

View File

@ -16,6 +16,15 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {