diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-08-28 16:49:06 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-08-28 17:21:48 -0500 |
| commit | b197f44518b63c13eda71d7e2a78132ded49446c (patch) | |
| tree | 7be4ce048af94059ef1f6312a1b8aa969bbddba7 /Source/Android | |
| parent | 683191b6c6bfca8945dfb2dc5669b3d092b33643 (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.gradle | 4 |
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") |
