Merge "docs: Changes to release notes for the Android SDK 22.6.0 release." into klp-docs

This commit is contained in:
Ricardo Cervera
2014-03-04 01:07:52 +00:00
committed by Android (Google) Code Review
5 changed files with 177 additions and 20 deletions

View File

@@ -27,21 +27,21 @@ sdk.win64_bundle_checksum=ddddbb1b9028015779d68dde01f96b14
sdk.linux_download=android-sdk_r22.3-linux.tgz
sdk.linux_bytes=100968558
sdk.linux_checksum=6ae581a906d6420ad67176dff25a31cc
sdk.linux_download=android-sdk_r22.6-linux.tgz
sdk.linux_bytes=100992666
sdk.linux_checksum=dde27b72715e52693c1ebc908742fc40
sdk.mac_download=android-sdk_r22.3-macosx.zip
sdk.mac_bytes=74893875
sdk.mac_checksum=ecde88ca1f05955826697848fcb4a9e7
sdk.mac_download=android-sdk_r22.6-macosx.zip
sdk.mac_bytes=74547402
sdk.mac_checksum=10c0e2ab65444c4911d69356ca2343f5
sdk.win_download=android-sdk_r22.3-windows.zip
sdk.win_bytes=108847452
sdk.win_checksum=9f0fe8c8884d6aee2b298fee203c62dc
sdk.win_download=android-sdk_r22.6-windows.zip
sdk.win_bytes=108862292
sdk.win_checksum=6faa487d328be352a456c53d9cbf0e3d
sdk.win_installer=installer_r22.3-windows.exe
sdk.win_installer_bytes=88845794
sdk.win_installer_checksum=ad50c4dd9e23cee65a1ed740ff3345fa
sdk.win_installer=installer_r22.6-windows.exe
sdk.win_installer_bytes=88856450
sdk.win_installer_checksum=6e5351b414bd554f3ac4c79f9dd4d213
@@ -363,8 +363,8 @@ the ADT plugin to it.</p>
<div class="col-6 reqs" style="margin:0 0 15px 20px;display:none;">
<h5>Eclipse IDE</h5>
<ul>
<li><a href="http://eclipse.org/mobile/">Eclipse</a> 3.6.2 (Helios) or greater
<p class="note"><strong>Note:</strong> Eclipse 3.5 (Galileo) is no longer
<li><a href="http://eclipse.org/mobile/">Eclipse</a> 3.7.2 (Indigo) or greater
<p class="note"><strong>Note:</strong> Eclipse 3.6 (Helios) is no longer
supported with the latest version of ADT.</p></li>
<li>Eclipse <a href="http://www.eclipse.org/jdt">JDT</a> plugin (included
in most Eclipse IDE packages) </li>

View File

@@ -1,8 +1,8 @@
page.title=Installing the Eclipse Plugin
adt.zip.version=22.3.0
adt.zip.download=ADT-22.3.0.zip
adt.zip.bytes=14493723
adt.zip.checksum=0189080b23dfa0f866adafaaafcc34ab
adt.zip.version=22.6.0
adt.zip.download=ADT-22.6.0.zip
adt.zip.bytes=14585211
adt.zip.checksum=d95c6d8e678881f6c89f063b58d4162f
@jd:body

View File

@@ -77,6 +77,18 @@ listing in the Android SDK Manager.</p>
<div class="toggle-content opened">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-content-img"
alt=""/>Build Tools, Revision 19.0.3</a> <em>(March 2014)</em>
</p>
<div class="toggle-content-toggleme">
<p>Fixed an issue with RenderScript support.</p>
</div>
</div>
<div class="toggle-content closed">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img"
alt=""/>Build Tools, Revision 19.0.2</a> <em>(February 2014)</em>
</p>
<div class="toggle-content-toggleme">

View File

@@ -53,8 +53,71 @@ the ADT Plugin, as denoted by revision number. </p>
<p>For a summary of all known issues in ADT, see <a
href="http://tools.android.com/knownissues">http://tools.android.com/knownissues</a>.</p>
<div class="toggle-content opened">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-content-img"
alt=""/>ADT 22.6.0</a> <em>(March 2014)</em>
</p>
<div class="toggle-content-toggleme">
<dl>
<dt>Dependencies:</dt>
<dd>
<ul>
<li>Java 1.6 or higher is required.</li>
<li>Eclipse Indigo (Version 3.7.2) or higher is required.</li>
<li>This version of ADT is designed for use with
<a href="{@docRoot}tools/sdk/tools-notes.html">SDK Tools r22.6</a>.
If you haven't already installed SDK Tools r22.6 into your SDK, use the
Android SDK Manager to do so.</li>
</ul>
</dd>
<dt>General Notes:</dt>
<dd>
<ul>
<li><p>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 <code>minSdkVersion</code>
19; the rest of the new language features require
<code>minSdkVersion</code> 8 or higher.</p>
<p>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.</p>
</li>
<li>Added new lint checks:
<ul>
<li>Security:
<ul>
<li>Look for code potentially affected by a <code>SecureRandom</code>
vulnerability.</li>
<li>Check that calls to <code>checkPermission</code> use the return
value.</li>
</ul>
</li>
<li>Check that production builds do not use mock location providers.</li>
</ul>
</li>
<li>Updated the New Project templates to include the
<a href="{@docRoot}tools/support-library/features.html#v7-appcompat">
v7 appcompat Support Library</a>.</li>
<li>Updated the Android tools libraries to include the rendering sandbox,
improvements for converting resource XML string declarations to layout
strings, and other updates.</li>
<li>Improved the Gradle export wizard. Note that the new importer in Android
Studio is the preferred way to migrate existing projects to Gradle.</li>
<li>Fixed a deadlock during startup.</li>
<li>Fixed an issue with RenderScript support. Using RenderScript support mode
now requires version 19.0.3 of the Build Tools.</li>
</ul>
</dd>
</dl>
</div>
</div>
<div class="toggle-content closed">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-content-img"
alt=""/>ADT 22.3.0</a> <em>(October 2013)</em>

View File

@@ -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</a>.</p>
<div class="toggle-content opened">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-content-img"
alt=""/>SDK Tools, Revision 22.6</a> <em>(March 2014)</em>
</p>
<div class="toggle-content-toggleme">
<dl>
<dt>Dependencies:</dt>
<dd>
<ul>
<li>Android SDK Platform-tools revision 18 or later.</li>
<li>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
<a href="{@docRoot}tools/sdk/eclipse-adt.html">ADT Plugin</a> to 22.6.0.</li>
<li>If you are developing outside Eclipse, you must have
<a href="http://ant.apache.org/">Apache Ant</a> 1.8 or later.</li>
</ul>
</dd>
<dt>General Notes:</dt>
<dd>
<ul>
<li><p>The command line <code>lint</code> script (<code>tools\lint.bat</code> on
Windows platforms, <code>tools/lint</code> on other platforms) and the
<code>lint</code> target on <code>ant</code> builds fail with the following
error:</p>
<p><code>Exception in thread "main" java.lang.NoClassDefFoundError:
lombok/ast/AstVisitor</code></p>
<p>As a temporary workaround, rename the file
<code>tools\lib\lombok-ast-0.2.2.jar</code> to
<code>tools\lib\lombok-ast.jar</code>.
We will release an updated version of the tools with a fix for
this issue as soon as possible.</p>
</li>
<li>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 <code>minSdkVersion</code>
19; the rest of the new language features require
<code>minSdkVersion</code> 8 or higher.</li>
<li>Added new lint checks:
<ul>
<li>Security:
<ul>
<li>Look for code potentially affected by a <code>SecureRandom</code>
vulnerability.</li>
<li>Check that calls to <code>checkPermission</code> use the return value.</li>
</ul>
</li>
<li>Check that production builds do not use mock location providers.</li>
<li>Look for manifest values that are overwritten by values from Gradle build
scripts.</li>
</ul>
</li>
<li>Fixed a number of minor issues in the SDK and build system.</li>
<li>Emulator:
<ul>
<li>Fixed a problem with the emulator shutting down immediately for Android 1.5
on the Nexus One and Nexus S devices.
(<a href="http://b.android.com/64945">Issue 64945</a>)</li>
<li>Fixed a problem with port numbers longer than four digits.
(<a href="http://b.android.com/60024">Issue 60024</a>)</li>
<li>Fixed battery errors for the Nexus One and Nexus S devices.
(<a href="http://b.android.com/39959">Issue 39959</a>)</li>
<li>Fixed a problem with paths or arguments that contain
spaces on Windows platforms.
(<a href="http://b.android.com/18317">Issue 18317</a>)</li>
<li>Fixed a problem with long path values on Windows platforms.
(<a href="http://b.android.com/33336">Issue 33336</a>)</li>
<li>Fixed a problem with the {@code -snapshot-list} command line
option on 64-bit systems.
(<a href="http://b.android.com/34233">Issue 34233</a>)</li>
</ul>
</li>
<li>Fixed an issue with RenderScript support. Using RenderScript support mode
now requires version 19.0.3 of the Build Tools.</li>
</ul>
</dd>
</dl>
</div>
</div>
<div class="toggle-content closed">
<p><a href="#" onclick="return toggleContent(this)">
<img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img"
alt=""/>SDK Tools, Revision 22.3</a> <em>(October 2013)</em>
</p>