|
1 | 1 | page.title=ADT Plugin for Eclipse |
2 | | -adt.zip.version=16.0.1 |
3 | | -adt.zip.download=ADT-16.0.1.zip |
4 | | -adt.zip.bytes=7000078 |
5 | | -adt.zip.checksum=03a2a23650ddac128c8b9e8aaf0aa433 |
| 2 | +adt.zip.version=17.0.0 |
| 3 | +adt.zip.download=ADT-17.0.0.zip |
| 4 | +adt.zip.bytes=12836115 |
| 5 | +adt.zip.checksum=ecb12c07e534997cd32c66d57f21b770 |
6 | 6 |
|
7 | 7 | @jd:body |
8 | 8 |
|
@@ -108,11 +108,109 @@ padding: .25em 1em; |
108 | 108 | } |
109 | 109 | </style> |
110 | 110 |
|
111 | | - |
112 | 111 | <div class="toggleable opened"> |
113 | 112 | <a href="#" onclick="return toggleDiv(this)"> |
114 | 113 | <img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-img" height="9px" |
115 | 114 | width="9px" /> |
| 115 | +ADT 17.0.0</a> <em>(March 2012)</em> |
| 116 | + <div class="toggleme"> |
| 117 | +<dl> |
| 118 | + <dt>Dependencies:</dt> |
| 119 | + |
| 120 | + <dd> |
| 121 | + <ul> |
| 122 | + <li>Java 1.6 or higher is required for ADT 17.0.0.</li> |
| 123 | + <li>Eclipse Helios (Version 3.6.2) or higher is required for ADT 17.0.0.</li> |
| 124 | + <li>ADT 17.0.0 is designed for use with <a href="{@docRoot}sdk/tools-notes.html">SDK Tools |
| 125 | + r17</a>. If you haven't already installed SDK Tools r17 into your SDK, use the Android SDK |
| 126 | + Manager to do so.</li> |
| 127 | + </ul> |
| 128 | + </dd> |
| 129 | + |
| 130 | + <dt>General improvements:</dt> |
| 131 | + <dd> |
| 132 | + <ul> |
| 133 | + <li>New build features |
| 134 | + <ul> |
| 135 | + <li>Added feature to automatically setup JAR dependencies. Any {@code .jar} files in the |
| 136 | + {@code /libs} folder are added to the build configuration (similar to how the Ant build |
| 137 | + system works). Also, {@code .jar} files needed by library projects are also automatically |
| 138 | + added to projects that depend on those library projects.</li> |
| 139 | + <li>Added a feature that allows you to run some code only in debug mode. Builds now |
| 140 | +generate a class called {@code BuildConfig} containing a {@code DEBUG} constant that is |
| 141 | +automatically set according to your build type. You can check the ({@code BuildConfig.DEBUG}) |
| 142 | +constant in your code to run debug-only functions.</li> |
| 143 | + <li>Added support for custom views with custom attributes in libraries. Layouts using |
| 144 | +custom attributes must use the namespace URI {@code http://schemas.android.com/apk/res-auto} instead |
| 145 | +of the URI that includes the app package name. This URI is replaced with the app specific one at |
| 146 | +build time.</li> |
| 147 | + </ul> |
| 148 | + </li> |
| 149 | + <li>Improved Lint features. See the <a href="{@docRoot}sdk/tools-notes.html">SDK Tools r17</a> |
| 150 | +release notes.</li> |
| 151 | + <li>Improved the Lint user interface |
| 152 | + <ul> |
| 153 | + <li>Added <strong>Run Lint</strong> toolbar action with a dropdown menu for selecting |
| 154 | +specific (or all) projects, clearing results and other actions.</li> |
| 155 | + <li>Updated the results window to be organized as a tree rather than a flat list. Each |
| 156 | +issue type has a single top level item, which makes it easier to quickly scan through the reported |
| 157 | +issues and narrow down to the issues you are most interested in.</li> |
| 158 | + <li>Added many new toolbar actions to the results window, including expand/collapse, |
| 159 | +ignore in file, ignore in project, ignore everywhere, show options, and configure columns.</li> |
| 160 | + <li>Added new column options for the <strong>Lint Warnings</strong> tab, such as |
| 161 | +category, priority, project, file and line. The column selection (as well as the column sizes) are |
| 162 | +persisted. You can also click on columns to sort by those values.</li> |
| 163 | + <li>Added Enable All and Disable All buttons to the Lint Options dialog, and a search |
| 164 | +filter textbox to filter by issue id, summary and severity.</li> |
| 165 | + </ul> |
| 166 | + </li> |
| 167 | + <li>Added Quick Outline for XML editors (Ctrl-O, Command-O). This feature shows the structure |
| 168 | +of the current file including icons and ids, lets you filter and quickly jump to specific ids.</li> |
| 169 | + <li>Updated the resource chooser to shows the resolved value for resources. For example, |
| 170 | +when selecting {@code @string/hello} the chooser displays a resolved value such as "Hello World"). |
| 171 | +The resource chooser also now allows you to edit the chosen value directly.</li> |
| 172 | + <li>Updated Layout Editor so that it does not assign default ids to layouts, includes and |
| 173 | +merge tags. This behavior tended to pollute the namespace with a lot of unused resources since |
| 174 | +layouts are not usually manipulated via code, or referenced from XML. (The RelativeLayout editor |
| 175 | +automatically assigns ids to views without ids when pointing to them.)</li> |
| 176 | + <li>Added ability to export screenshots from the Layout Editor</li> |
| 177 | + </ul> |
| 178 | + </dd> |
| 179 | + |
| 180 | + <dt>Bug fixes:</dt> |
| 181 | + <dd> |
| 182 | + <ul> |
| 183 | + <li>Fixed problem using Layout Editor with {@link android.widget.SlidingDrawer} which could |
| 184 | + not be dragged into the layout on some platforms.</li> |
| 185 | + <li>Fixed preview rendering for {@link android.widget.SlidingDrawer} and |
| 186 | + {@link android.widget.TabHost}. |
| 187 | + (<a href="http://code.google.com/p/android/issues/detail?id=23022">Issue 23022</a>).</li> |
| 188 | + <li>Fixed issues that could prevent layout rendering due to unresolvable resources. |
| 189 | + (<a href="http://code.google.com/p/android/issues/detail?id=21046">Issue 21046</a>, |
| 190 | + <a href="http://code.google.com/p/android/issues/detail?id=21051">Issue 21051</a>)</li> |
| 191 | + <li>Fixed a bug in resource chooser which made some types of framework resources impossible to |
| 192 | +select. (<a href="http://code.google.com/p/android/issues/detail?id=20589">Issue 20589</a>)</li> |
| 193 | + <li>Fixed a bug in the formatter where a certain whitespace pattern could result in a |
| 194 | + non-space character getting deleted. |
| 195 | + (<a href="http://code.google.com/p/android/issues/detail?id=23940">Issue 23940</a>)</li> |
| 196 | + <li>Fixed a locale bug affecting Turkish locales in particular. |
| 197 | + (<a href="http://code.google.com/p/android/issues/detail?id=23747">Issue 23747</a>)</li> |
| 198 | + <li>Fixed issue where dex complains about duplicate classes in cases where a Library |
| 199 | + Project depends on the same jar files or Java-only projects.</li> |
| 200 | + <li>Fixed issue where test projects had to independently reference the library projects used |
| 201 | + by an app project. Now referencing only the app project is enough.</li> |
| 202 | + </ul> |
| 203 | + </dd> |
| 204 | + |
| 205 | +</dl> |
| 206 | + |
| 207 | +</div> |
| 208 | +</div> |
| 209 | + |
| 210 | +<div class="toggleable closed"> |
| 211 | + <a href="#" onclick="return toggleDiv(this)"> |
| 212 | + <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" |
| 213 | +width="9px" /> |
116 | 214 | ADT 16.0.1</a> <em>(December 2011)</em> |
117 | 215 | <div class="toggleme"> |
118 | 216 | <dl> |
@@ -182,11 +280,11 @@ ADT 15.0.1</a> <em>(November 2011)</em> |
182 | 280 | <div class="toggleme"> |
183 | 281 | <dl> |
184 | 282 | <dt>Dependencies:</dt> |
185 | | - |
| 283 | + |
186 | 284 | <dd>ADT 15.0.1 is designed for use with <a href="{@docRoot}sdk/tools-notes.html">SDK Tools r15</a>. |
187 | 285 | If you haven't already installed SDK Tools r15 into your SDK, use the Android SDK Manager to |
188 | 286 | do so.</dd> |
189 | | - |
| 287 | + |
190 | 288 | <dt>Bug fixes:</dt> |
191 | 289 | <dd> |
192 | 290 | <ul> |
|
0 commit comments