diff options
author | Tenghui Zhu <ztenghui@google.com> | 2015-08-18 23:13:12 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-08-18 23:13:12 +0000 |
commit | c9ecc985947462e3032fdd3b1c6abc0d5b5b1084 (patch) | |
tree | 144bb95b7da1bd6b5627aa1eb2d4edd1f27ad503 /docs/html/tools | |
parent | 54bdb2e732de98ae2829101570dc29970e377fa3 (diff) | |
parent | 9a2ab4c32ad4673ee2dec970ae2081fb9d36da18 (diff) | |
download | frameworks_base-c9ecc985947462e3032fdd3b1c6abc0d5b5b1084.zip frameworks_base-c9ecc985947462e3032fdd3b1c6abc0d5b5b1084.tar.gz frameworks_base-c9ecc985947462e3032fdd3b1c6abc0d5b5b1084.tar.bz2 |
Merge "Add some bookmarks to plugin-for-gradle page" into mnc-dev
Diffstat (limited to 'docs/html/tools')
-rw-r--r-- | docs/html/tools/building/plugin-for-gradle.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/tools/building/plugin-for-gradle.jd b/docs/html/tools/building/plugin-for-gradle.jd index c1ec425..513153d 100644 --- a/docs/html/tools/building/plugin-for-gradle.jd +++ b/docs/html/tools/building/plugin-for-gradle.jd @@ -112,7 +112,7 @@ several kinds of modules:</p> configuration options common to all application modules in the project. Each application module also has its own build.gradle file for build settings specific to that module.</p> -<h3>Project Build File</h3> +<h3 id="projectBuildFile">Project Build File</h3> <p>By default, the project-level Gradle file uses <em>buildscript</em> to define the Gradle <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 @@ -144,7 +144,7 @@ allprojects { the <em>local.properties</em> file in the <code>sdk.dir<sdk location></code> setting or through an <code>ANDROID_HOME</code> environment variable.</p> -<h3>Module Build File</h3> +<h3 id="moduleBuildFile">Module Build File</h3> <p>The application module Gradle build file allows you to configure module build settings, including overriding the <code>src/main</code> manifest settings and setting custom packaging options. </p> @@ -378,7 +378,7 @@ and two <em>dimensions</em> of product flavors, one for app type (demo or full) CPU/ABI (x86, ARM, or MIPS). </p> -<h3>Source directories</h3> +<h3 id="sourceDirectories">Source directories</h3> <p>To build each version of your app, the build system combines source code and resources from:</p> |