diff --git a/docs/html/tools/revisions/build-tools.jd b/docs/html/tools/revisions/build-tools.jd new file mode 100644 index 0000000000000..1da51b5477dcf --- /dev/null +++ b/docs/html/tools/revisions/build-tools.jd @@ -0,0 +1,171 @@ +page.title=Build Tools +@jd:body + +
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:
+ ++sdk.buildtools=17.0.0 ++
+android {
+ ...
+ buildToolsVersion "17.0.0"
+ ...
+}
+
+ 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)
+
+
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.
+ +