diff --git a/docs/html/tools/revisions/gradle-plugin.jd b/docs/html/tools/revisions/gradle-plugin.jd index 90ec44a32b41f..8713e6b0ed784 100644 --- a/docs/html/tools/revisions/gradle-plugin.jd +++ b/docs/html/tools/revisions/gradle-plugin.jd @@ -40,6 +40,106 @@ href="http://tools.android.com/knownissues">http://tools.android.com/knownissues
Android Plugin for Gradle, Revision 1.3.0 (July 2015)
+
com.android.build.threadPoolSize property to control
+ the Android task thread pool size from the build.gradle file or
+ the command line. The following example sets this property to 4.
++-Pcom.android.build.threadPoolSize=4 ++
LICENSE and LICENSE.txt
+ files from APKs. To include these files in an APK, remove these files from the
+ packagingOptions.excludes property in the build.gradle file.
+ For example:
+
+android {
+ packagingOptions.excludes = []
+ }
+
+ sourceSets task to inspect the set of all available source sets. flavor1 and flavorA with the Debug build type,
+ the test source sets are:
+ Android tests already recognized multi-flavor source folders.
javac on main and test sources, even if the useJack
+ property is set to true in your build file. +./gradlew connectedCheck \ + -Pandroid.testInstrumentationRunnerArguments.size=medium \ + -Pandroid.testInstrumentationRunnerArguments.class=TestA,TestB ++
build.gradle file. For example:
+
+android {
+ aaptOptions {
+ additionalParameters "--custom_option", "value"
+ }
+}
+
+ targetProjectPath and targetVariant properties to set the APK
+ path and target variant.
+ Note: A test APK module does not support product + flavors and can only target a single variant. Also, Jacoco is not supported yet.
+@{applicationId} placeholder in the
+ manifest merger settings.
+ Instead, use a different placeholder, such as @{libApplicationId} and
+ provide a value for it if you want to include application Ids in the archive library.
+
Android Plugin for Gradle, Revision 1.2.0 (April 2015)