diff --git a/docs/html/tools/revisions/gradle-plugin.jd b/docs/html/tools/revisions/gradle-plugin.jd index fd294d246ca36..90ec44a32b41f 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)
+
unitTestVariants property so unit test variants
+ can be manipulated using the build.gradle file.
+ 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.
+ }
+ }
+}
+
+ mockable-android.jar file.
+ testProguardFile property to apply
+ ProGuard files when minifying a test APK.
+ timeOut property to the adbOptions code block
+ for setting the maximum recording time for
+ Android Debug Bridge screen recording.
+
+
Android Plugin for Gradle, Revision 1.1.3 (March 2015)