From b197f44518b63c13eda71d7e2a78132ded49446c Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Thu, 28 Aug 2014 16:49:06 -0500 Subject: [PATCH] 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. --- Source/Android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Android/build.gradle b/Source/Android/build.gradle index c9277ea178..d6a57836ea 100644 --- a/Source/Android/build.gradle +++ b/Source/Android/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.8.+' + classpath 'com.android.tools.build:gradle:0.12.+' } } apply plugin: 'android' @@ -15,7 +15,7 @@ dependencies { android { compileSdkVersion 19 - buildToolsVersion "19.0.1" + buildToolsVersion "20.0.0" task nativeLibsToJar(type: Zip, description: 'create a jar archive of the native libs') { destinationDir file("$buildDir/native-libs")