summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2014-08-28 16:49:06 -0500
committerRyan Houdek <Sonicadvance1@gmail.com>2014-08-28 17:21:48 -0500
commitb197f44518b63c13eda71d7e2a78132ded49446c (patch)
tree7be4ce048af94059ef1f6312a1b8aa969bbddba7 /Source/Android
parent683191b6c6bfca8945dfb2dc5669b3d092b33643 (diff)
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.
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/build.gradle4
1 files 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")