
Also add useProgard true, since minifyEnabled now refers to the new experimental code shrinker. I'm not removing proguard yet as we depend on it for the samsung workaround. I also do not know how to port the rest of the config options to the new shrinker.
14 lines
252 B
Groovy
14 lines
252 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.0.0'
|
|
classpath files('libs/gradle-witness.jar')
|
|
}
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.11'
|
|
}
|