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:
Ryan Houdek 2014-08-28 16:49:06 -05:00
parent 683191b6c6
commit b197f44518
1 changed files with 2 additions and 2 deletions

View File

@ -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")