From e5eceefff93833de70fb3be9cbc75f0f97ad9220 Mon Sep 17 00:00:00 2001 From: Rich Slogar Date: Mon, 30 Mar 2015 13:33:38 -0700 Subject: docs: plugin 1.2.0 revision updates Change-Id: Ic58da005e16c4a51dacff741ac3e5a7856ac3edb --- docs/html/tools/revisions/gradle-plugin.jd | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/docs/html/tools/revisions/gradle-plugin.jd b/docs/html/tools/revisions/gradle-plugin.jd index fd294d2..90ec44a 100644 --- a/docs/html/tools/revisions/gradle-plugin.jd +++ b/docs/html/tools/revisions/gradle-plugin.jd @@ -36,9 +36,77 @@ plugin you are using, check the version declaration in the project-level

For a summary of known issues in Android Plugin for Gradle, see http://tools.android.com/knownissues.

+

Android Plugin for Gradle, Revision 1.2.0 (April 2015) +

+ +
+ +
+
Dependencies:
+ +
+
    +
  • Gradle 2.2.1 or higher.
  • +
  • Build Tools 21.1.1 or higher.
  • +
+
+ +
General Notes:
+
+
    +
  • Enhanced support for running unit tests with Gradle.
  • +
      +
    • Added support to include Java-style resources in the classpath when running unit + tests directly from Gradle. +
    • +
    • Added unit test dependency support for Android ARchive (AAR) artifacts. +
    • +
    • Added support for the unitTestVariants property so unit test variants + can be manipulated using the build.gradle file. +
    • +
    • Added the unitTest.all code block under testOptions to + configure customized tasks for unit test. The following sample code shows how to add + unit test configuration settings using this new option: +
      +android {
      +  testOptions {
      +    unitTest.all {
      +      jvmArgs '-XX:MaxPermSize=256m' // Or any other gradle option.
      +    }
      +  }
      +}
      +
      +
    • +
    • Fixed the handling of enums and public instance fields in the packaging of the + mockable-android.jar file. +
    • +
    • Fixed library project task dependencies so test classes recompile after changes. +
    • +
    +
  • Added the testProguardFile property to apply + ProGuard files when minifying a test APK. +
  • +
  • Added the timeOut property to the adbOptions code block + for setting the maximum recording time for + Android Debug Bridge screen recording. +
  • +
  • Added support for 280 dpi resources. +
  • +
  • Improved performance during project evaluation. +
  • +
+
+
+
+ + +
+

+ Android Plugin for Gradle, Revision 1.1.3 (March 2015)

-- cgit v1.1