Update build.gradle to newer buildtools.
Newer android studio versions now mandate at least build tools 20.0.0 and gradle 0.12+ So update the gradle file for this.
This commit is contained in:
parent
683191b6c6
commit
b197f44518
|
@ -3,7 +3,7 @@ buildscript {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:0.8.+'
|
classpath 'com.android.tools.build:gradle:0.12.+'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
apply plugin: 'android'
|
apply plugin: 'android'
|
||||||
|
@ -15,7 +15,7 @@ dependencies {
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 19
|
compileSdkVersion 19
|
||||||
buildToolsVersion "19.0.1"
|
buildToolsVersion "20.0.0"
|
||||||
|
|
||||||
task nativeLibsToJar(type: Zip, description: 'create a jar archive of the native libs') {
|
task nativeLibsToJar(type: Zip, description: 'create a jar archive of the native libs') {
|
||||||
destinationDir file("$buildDir/native-libs")
|
destinationDir file("$buildDir/native-libs")
|
||||||
|
|
Loading…
Reference in New Issue