Upgrade Gradle to 5.6.2 and AGP to 3.5.1

This commit is contained in:
alex-signal
2019-10-17 09:08:24 -03:00
committed by Greyson Parrelli
parent 86d088bce2
commit 9e3475ed94
7 changed files with 68 additions and 8 deletions

View File

@@ -8,9 +8,14 @@ buildscript {
maven {
url "https://repo1.maven.org/maven2"
}
jcenter {
content {
includeVersion 'org.jetbrains.trove4j', 'trove4j', '20160824'
}
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0'
}
}
@@ -339,6 +344,7 @@ android {
lintOptions {
abortOnError true
baseline file("lint-baseline.xml")
disable "LintError"
}
testOptions {
@@ -443,3 +449,7 @@ task qa {
description 'Quality Assurance. Run before pushing.'
dependsOn ':testPlayReleaseUnitTest', ':lintPlayRelease', ':assemblePlayDebug'
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
}