diff --git a/docs/html/tools/sdk/eclipse-adt.jd b/docs/html/tools/sdk/eclipse-adt.jd
index c584ae59d7d6b..d711e4426a8df 100644
--- a/docs/html/tools/sdk/eclipse-adt.jd
+++ b/docs/html/tools/sdk/eclipse-adt.jd
@@ -53,8 +53,71 @@ the ADT Plugin, as denoted by revision number.
For a summary of all known issues in ADT, see http://tools.android.com/knownissues.
-
+
+
ADT 22.6.0 (March 2014)
+
+
+
+
+ - Dependencies:
+
+ -
+
+ - Java 1.6 or higher is required.
+ - Eclipse Indigo (Version 3.7.2) or higher is required.
+ - This version of ADT is designed for use with
+ SDK Tools r22.6.
+ If you haven't already installed SDK Tools r22.6 into your SDK, use the
+ Android SDK Manager to do so.
+
+
+
+ - General Notes:
+ -
+
+ Added support for Java 7 language features like multi-catch, try-with-resources,
+ and the diamond operator. These features require version 19 or higher
+ of the Build Tools. Try-with-resources requires minSdkVersion
+ 19; the rest of the new language features require
+ minSdkVersion 8 or higher.
+ To use the new language features after installing ADT 22.6.0, ensure
+ that you run Eclipse on JDK 7 and change your application project settings
+ to use JDK 7.
+
+ - Added new lint checks:
+
+ - Security:
+
+ - Look for code potentially affected by a
SecureRandom
+ vulnerability.
+ - Check that calls to
checkPermission use the return
+ value.
+
+
+ - Check that production builds do not use mock location providers.
+
+
+ - Updated the New Project templates to include the
+
+ v7 appcompat Support Library.
+ - Updated the Android tools libraries to include the rendering sandbox,
+ improvements for converting resource XML string declarations to layout
+ strings, and other updates.
+ - Improved the Gradle export wizard. Note that the new importer in Android
+ Studio is the preferred way to migrate existing projects to Gradle.
+ - Fixed a deadlock during startup.
+ - Fixed an issue with RenderScript support. Using RenderScript support mode
+ now requires version 19.0.3 of the Build Tools.
+
+
+
+
+
+
+
+
ADT 22.3.0 (October 2013)
diff --git a/docs/html/tools/sdk/tools-notes.jd b/docs/html/tools/sdk/tools-notes.jd
index c28b946782b57..99f0b38db983d 100644
--- a/docs/html/tools/sdk/tools-notes.jd
+++ b/docs/html/tools/sdk/tools-notes.jd
@@ -26,10 +26,92 @@ Tools you are using, refer to the "Installed Packages" listing in the Android SD
href="http://tools.android.com/knownissues">http://tools.android.com/knownissues.
-
SDK Tools, Revision 22.6 (March 2014)
+
+
+
+
+
+ - Dependencies:
+ -
+
+ - Android SDK Platform-tools revision 18 or later.
+ - If you are developing in Eclipse with ADT, note that this version of SDK Tools is
+ designed for use with ADT 22.6.0 and later. If you haven't already, update your
+ ADT Plugin to 22.6.0.
+ - If you are developing outside Eclipse, you must have
+ Apache Ant 1.8 or later.
+
+
+
+ - General Notes:
+ -
+
+ The command line lint script (tools\lint.bat on
+ Windows platforms, tools/lint on other platforms) and the
+ lint target on ant builds fail with the following
+ error:
+ Exception in thread "main" java.lang.NoClassDefFoundError:
+ lombok/ast/AstVisitor
+ As a temporary workaround, rename the file
+ tools\lib\lombok-ast-0.2.2.jar to
+ tools\lib\lombok-ast.jar.
+ We will release an updated version of the tools with a fix for
+ this issue as soon as possible.
+
+ - Added support for Java 7 language features like multi-catch, try-with-resources,
+ and the diamond operator. These features require version 19 or higher
+ of the Build Tools. Try-with-resources requires
minSdkVersion
+ 19; the rest of the new language features require
+ minSdkVersion 8 or higher.
+ - Added new lint checks:
+
+ - Security:
+
+ - Look for code potentially affected by a
SecureRandom
+ vulnerability.
+ - Check that calls to
checkPermission use the return value.
+
+
+ - Check that production builds do not use mock location providers.
+ - Look for manifest values that are overwritten by values from Gradle build
+ scripts.
+
+
+ - Fixed a number of minor issues in the SDK and build system.
+ - Emulator:
+
+ - Fixed a problem with the emulator shutting down immediately for Android 1.5
+ on the Nexus One and Nexus S devices.
+ (Issue 64945)
+ - Fixed a problem with port numbers longer than four digits.
+ (Issue 60024)
+ - Fixed battery errors for the Nexus One and Nexus S devices.
+ (Issue 39959)
+ - Fixed a problem with paths or arguments that contain
+ spaces on Windows platforms.
+ (Issue 18317)
+ - Fixed a problem with long path values on Windows platforms.
+ (Issue 33336)
+ - Fixed a problem with the {@code -snapshot-list} command line
+ option on 64-bit systems.
+ (Issue 34233)
+
+
+ - Fixed an issue with RenderScript support. Using RenderScript support mode
+ now requires version 19.0.3 of the Build Tools.
+
+
+
+
+
+
+