build: update 'proguard' from 6.1.1 to 7.0.0

`jcenter()` it's needed because they didn't upload to Maven Central yet. https://github.com/Guardsquare/proguard/issues/54

There are some minor issues with proguard still.
It produces a lot of warnings since Gradle 6.0, but it's fixable on their side. https://github.com/Guardsquare/proguard/issues/14
This commit is contained in:
Giacomo Ferretti 2020-08-10 15:07:06 +02:00 committed by Connor Tumbleson
parent 4c3f1f335a
commit d3f9d5acd2
2 changed files with 5 additions and 2 deletions

View File

@ -23,10 +23,13 @@ dependencies {
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath depends.proguard_gradle
classpath(depends.proguard_gradle) {
exclude group: 'com.android.tools.build'
}
}
}

View File

@ -118,7 +118,7 @@ subprojects {
commons_lang: 'org.apache.commons:commons-lang3:3.1',
guava: 'com.google.guava:guava:14.0',
junit: 'junit:junit:4.12',
proguard_gradle: 'net.sf.proguard:proguard-gradle:6.1.1',
proguard_gradle: 'com.guardsquare:proguard-gradle:7.0.0',
snakeyaml: 'org.yaml:snakeyaml:1.18:android',
smali: 'org.smali:smali:2.4.0',
xmlpull: 'xpp3:xpp3:1.1.4c',