Skip to content

Commit

Permalink
Update build.gradle to newer buildtools.
Browse files Browse the repository at this point in the history
Newer android studio versions now mandate at least build tools 20.0.0 and gradle 0.12+
So update the gradle file for this.
  • Loading branch information
Sonicadvance1 committed Aug 28, 2014
1 parent 683191b commit b197f44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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")
Expand Down

0 comments on commit b197f44

Please sign in to comment.