diff options
author | Joe Fernandez <joefernandez@google.com> | 2014-12-19 05:34:03 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-12-19 05:34:07 +0000 |
commit | 27cb0a56589ed6e49a832d6b2ff8bba38eb8cb9d (patch) | |
tree | 3c55c450140baee98c0267c97ca1c3a3f3081730 /docs/html/tools/building/plugin-for-gradle.jd | |
parent | 8eaf404239286f6179dd032184cab3fa0943834c (diff) | |
parent | 7ddb126da82f15576e07c231c32e22f47f3a5e99 (diff) | |
download | frameworks_base-27cb0a56589ed6e49a832d6b2ff8bba38eb8cb9d.zip frameworks_base-27cb0a56589ed6e49a832d6b2ff8bba38eb8cb9d.tar.gz frameworks_base-27cb0a56589ed6e49a832d6b2ff8bba38eb8cb9d.tar.bz2 |
Merge "docs: gradle version update in plugin file" into lmp-docs
Diffstat (limited to 'docs/html/tools/building/plugin-for-gradle.jd')
-rw-r--r-- | docs/html/tools/building/plugin-for-gradle.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/tools/building/plugin-for-gradle.jd b/docs/html/tools/building/plugin-for-gradle.jd index fde034a..a18b6d5 100644 --- a/docs/html/tools/building/plugin-for-gradle.jd +++ b/docs/html/tools/building/plugin-for-gradle.jd @@ -117,7 +117,7 @@ also has its own build.gradle file for build settings specific to that module.</ <em>repositories</em> and <em>dependencies</em>. This allows different projects to use different Gradle versions. Supported repositories include JCenter, Maven Central, or Ivy. This example declares that the build script uses the JCenter repository and a classpath dependency artifact -that contains the Android plugin for Gradle version 0.14.4. +that contains the Android plugin for Gradle version 1.0.1. </p> <p> <pre> @@ -126,7 +126,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:0.14.4' + classpath 'com.android.tools.build:gradle:1.0.1' // NOTE: Do not place your application dependencies here: they belong // in the individual module build.gradle files |