From b47cf7e70e50fd7bf622fd30743e7702fc743540 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 19 Dec 2014 21:43:48 -0600 Subject: [PATCH] Updates the gradle build file to the latest needed for Android Studio. This may require the buildbot to be updated. --- Source/Android/build.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Source/Android/build.gradle b/Source/Android/build.gradle index d6a57836ea..449862aaf8 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.12.+' + classpath 'com.android.tools.build:gradle:1.0.0+' } } apply plugin: 'android' @@ -25,7 +25,7 @@ android { into 'lib/' } - tasks.withType(Compile) { + tasks.withType(JavaCompile) { compileTask -> compileTask.dependsOn(nativeLibsToJar) } @@ -79,8 +79,9 @@ android { // Signed by debug key disallowing distribution on Play Store. // Attaches 'debug' suffix to version and package name, allowing installation alongside the release build. debug { - packageNameSuffix '.debug' + applicationIdSuffix ".debug" versionNameSuffix '-debug' + jniDebuggable true } } }