From 7618a960ab96c282b9905c038a96e2137011ba44 Mon Sep 17 00:00:00 2001 From: Joe Fernandez Date: Tue, 29 Oct 2013 17:35:12 -0700 Subject: docs: Adding Android Build Tools Release Notes 19.0.1 New release notes page to capture updates to the Android build tools Change-Id: Ide53142529c8eafed297e8e75ec40ae2c389375b --- docs/html/tools/revisions/build-tools.jd | 171 +++++++++++++++++++++++++++++++ docs/html/tools/tools_toc.cs | 8 +- 2 files changed, 175 insertions(+), 4 deletions(-) create mode 100644 docs/html/tools/revisions/build-tools.jd (limited to 'docs') diff --git a/docs/html/tools/revisions/build-tools.jd b/docs/html/tools/revisions/build-tools.jd new file mode 100644 index 0000000..1da51b5 --- /dev/null +++ b/docs/html/tools/revisions/build-tools.jd @@ -0,0 +1,171 @@ +page.title=Build Tools +@jd:body + +
+
+ +

See Also

+
    +
  1. Building and Running
  2. +
+ +
+
+ +

Build Tools is a component of the Android SDK required for building Android + application code. The latest version of these tools is included in the + SDK starter package and installed in the + <sdk>/build-tools/ directory.

+ +

You should always keep your Build Tools component updated by downloading the latest version + using the Android SDK Manager. By default, + the Android SDK uses the most recent downloaded version of the Build Tools. If your projects + depend on older versions of the Build Tools, the SDK Manager allows you to download and maintain + separate versions of the tools for use with those projects.

+ +

To use a specific version of the Build Tools in your application project:

+ +
+

+ Using Eclipse

+ +
+
    +
  1. In the root folder of your application project, find the {@code project.properties} + file.
  2. +
  3. Open the file and specify the Build Tools version by adding a {@code buildtools} property + on a separate line: +
    +sdk.buildtools=17.0.0
    +
    +
  4. +
+
+
+ +
+

+ Using Android Studio

+ +
+
    +
  1. In the root folder of your application project, find the {@code build.gradle} + file.
  2. +
  3. Open the file and specify the Build Tools version by adding a {@code buildToolsVersion} + property to the {@code android} section: +
    +android {
    +    ...
    +    buildToolsVersion "17.0.0"
    +    ...
    +}
    +
    +
  4. +
+
+
+ + +

Revisions

+ +

The sections below provide notes about releases of the Build Tools. To determine which +revisions of the Build Tools are available in your SDK, refer to the Installed Packages +listing in the Android SDK Manager.

+ + +
+

+ Build Tools, Revision 19.0.1 (December 2013) +

+
+ +
+
Fixed miscellaneous build issues:
+
+
    +
  • Fixed support for compiling RenderScript in NDK mode with Gradle.
  • +
  • Fixed {@code BufferOverflowException} problem in the dx build. + (Issue 61710) +
  • +
+
+
+

+ +
+
+ +
+

+ Build Tools, Revision 19 (October 2013) +

+
+ +

Added support for Android 4.4 (API level 19) build targets.

+ +
+
+ +
+

+ Build Tools, Revision 18.1.1 (September 2013) +

+
+ +

Fixed several minor build issues.

+ +
+
+ +
+

+ Build Tools, Revision 18.1.0 (September 2013) +

+
+ +

Fixed issue with RenderScript support mode.

+ +
+
+ +
+

+ Build Tools, Revision 18.0.1 (July 2013) +

+
+ +

Added support for Android 4.3 (API level 18) build targets.

+ +
+
+ +
+

+ Build Tools, Revision 17 (May 2013) +

+
+ +

Initial release.

+ +
+
General Notes:
+
+
    +
  • Included support for Android 4.2 (API level 17) build targets.
  • +
  • Decoupled the build-specific components of the Android SDK from the platform-tools + component, so that the build tools can be updated independently of the integrated + development environment (IDE) components.
  • +
+
+
+ +
+
diff --git a/docs/html/tools/tools_toc.cs b/docs/html/tools/tools_toc.cs index 1ac10e0..3e6b6d4 100644 --- a/docs/html/tools/tools_toc.cs +++ b/docs/html/tools/tools_toc.cs @@ -225,14 +225,14 @@ class="en">MonkeyRunner ?>tools/revisions/index.html">Revisions -- cgit v1.1