From 7749dede458bca248ea9ff7f27d9decd03afd6e2 Mon Sep 17 00:00:00 2001
From: Rich Slogar 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 {
...