diff --git a/docs/html/google/play-services/setup.jd b/docs/html/google/play-services/setup.jd
index 413000fbb3ada..cb3fa17b66ced 100644
--- a/docs/html/google/play-services/setup.jd
+++ b/docs/html/google/play-services/setup.jd
@@ -62,7 +62,7 @@ to Adding SDK Packages
dependencies for the latest version of
play-services. For example:
-apply plugin: 'android'
+apply plugin: 'com.android.application'
...
dependencies {
diff --git a/docs/html/tools/building/configuring-gradle.jd b/docs/html/tools/building/configuring-gradle.jd
index 2e15473b51eb4..5af20969612c2 100644
--- a/docs/html/tools/building/configuring-gradle.jd
+++ b/docs/html/tools/building/configuring-gradle.jd
@@ -44,7 +44,7 @@ at the module level. For example, the build file for the app module in the
BuildSystemExample project looks like this:
-apply plugin: 'android'
+apply plugin: 'com.android.application'
android {
compileSdkVersion 19
@@ -72,7 +72,7 @@ dependencies {
}
-apply plugin: 'android' applies the Android plugin for Gradle to this build.
+
apply plugin: 'com.android.application' applies the Android plugin for Gradle to this build.
This adds Android-specific build tasks to the top-level build tasks and makes the
android {...} element available to specify Android-specific build options.
-apply plugin: 'android'
+apply plugin: 'com.android.application'
android {
...