Update android gradle plugin to 3.5.2

This commit is contained in:
Dimitry Ivanov 2019-11-14 16:04:23 +03:00
parent 3c23140ac0
commit 36089699d4
2 changed files with 1 additions and 16 deletions

View File

@ -17,24 +17,10 @@ android {
lintOptions { lintOptions {
abortOnError false abortOnError false
} }
buildTypes {
debug {
minifyEnabled false
proguardFile 'proguard.pro'
}
}
compileOptions {
targetCompatibility '1.8'
sourceCompatibility '1.8'
}
} }
dependencies { dependencies {
implementation project(':markwon-editor')
implementation project(':markwon-core') implementation project(':markwon-core')
implementation project(':markwon-ext-strikethrough') implementation project(':markwon-ext-strikethrough')
implementation project(':markwon-ext-tables') implementation project(':markwon-ext-tables')

View File

@ -4,7 +4,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.5.1' classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0' classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
} }
} }
@ -44,7 +44,6 @@ if (hasProperty('local')) {
ext { ext {
// NB, updating build-tools or compile-sdk will require updating Travis config (.travis.yml)
config = [ config = [
'build-tools' : '28.0.3', 'build-tools' : '28.0.3',
'compile-sdk' : 28, 'compile-sdk' : 28,