From 91d7b668957e436e6d179c35cce90961fb24fa7f Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 22 Jun 2017 22:39:37 -0500 Subject: [PATCH] Update Build Tools and Gradle *Update Build Tools to 2.3.3. *Update Gradle properties to remove specified Java JDK location. This allows the project to compile if the user has set the JDK in an alternate location. --- build.gradle | 2 +- gradle.properties | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index e1c88e9..1e7c0f4 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.0' + classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7' } diff --git a/gradle.properties b/gradle.properties index 0ab8450..aac7c9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,6 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. org.gradle.jvmargs=-Xmx1536m -org.gradle.java.home=C:\\Program Files\\Java\\jdk1.8.0_102 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit