mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-22 07:43:15 +00:00
Upgrade to Gradle experimental plugin 0.6.0-alpha5
This commit is contained in:
parent
f864f2320a
commit
72bf5f42a1
3 changed files with 8 additions and 3 deletions
|
@ -34,6 +34,7 @@ model {
|
|||
android.buildTypes {
|
||||
release {
|
||||
minifyEnabled = true
|
||||
useProguard = true
|
||||
proguardFiles.add(file('proguard-rules.pro'))
|
||||
// TODO remove on stable release
|
||||
ndk.with {
|
||||
|
@ -42,6 +43,7 @@ model {
|
|||
}
|
||||
debug {
|
||||
ndk.with {
|
||||
useProguard = false
|
||||
debuggable = true
|
||||
}
|
||||
}
|
||||
|
@ -50,6 +52,9 @@ model {
|
|||
create("all") {
|
||||
}
|
||||
}
|
||||
android.lintOptions {
|
||||
abortOnError false
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -6,7 +6,7 @@ buildscript {
|
|||
}
|
||||
dependencies {
|
||||
// http://tools.android.com/tech-docs/new-build-system/gradle-experimental
|
||||
classpath 'com.android.tools.build:gradle-experimental:0.6.0-alpha1'
|
||||
classpath 'com.android.tools.build:gradle-experimental:0.6.0-alpha5'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
|||
#Wed Jan 06 12:15:50 CET 2016
|
||||
#Sun Feb 07 14:26:09 CET 2016
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
||||
|
|
Loading…
Reference in a new issue