blob: 2179cec6036d3a097bfc056f0a10d50f5dadfddf [file] [log] [blame]
Dirk Dougherty7b229ef2010-03-26 17:32:26 -07001page.title=SDK Tools
Dirk Doughertyee58d1b2009-10-16 15:25:15 -07002@jd:body
3
Dirk Dougherty7b229ef2010-03-26 17:32:26 -07004<p>SDK Tools is a downloadable component for the Android SDK. It includes the
5complete set of development and debugging tools for the Android SDK. </p>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -07006
Robert Lydec97362011-09-22 10:33:28 -07007<p>If you are new to the Android SDK, the <a
Dirk Dougherty7b229ef2010-03-26 17:32:26 -07008href="{@docRoot}sdk/index.html">SDK starter package</a> installs the
9latest revision of the SDK Tools in the <code>&lt;sdk&gt;/tools</code> directory.</p>
Dirk Doughertybf15ce62009-10-23 19:17:12 -070010
Dirk Dougherty5c2a5022009-12-17 16:59:46 -080011<p>If you are already using the SDK and you want to update to the latest version
12of the SDK Tools, use the <em>Android SDK and AVD Manager</em> to get the
13update, rather than downloading a new SDK starter package. For more information
14about how to update, see <a
15href="{@docRoot}sdk/adding-components.html#UpdatingComponents">Updating SDK
16Components</a>. </p>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -070017
Robert Lyedc2aac2011-01-14 16:25:09 -080018
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070019<h2 id="notes">Revisions</h2>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -080020
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070021<p>The sections below provide notes about successive releases of
22the SDK Tools, as denoted by revision number. To determine what revision of the SDK
23Tools you are using, refer to the "Installed Packages" listing in the Android SDK
24and AVD Manager. </p>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -080025
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070026<script type="text/javascript">
27function toggleDiv(link) {
28 var toggleable = $(link).parent();
29 if (toggleable.hasClass("closed")) {
30 //$(".toggleme", toggleable).slideDown("fast");
31 toggleable.removeClass("closed");
32 toggleable.addClass("open");
33 $(".toggle-img", toggleable).attr("title", "hide").attr("src", (toRoot + "assets/images/triangle-opened.png"));
34 } else {
35 //$(".toggleme", toggleable).slideUp("fast");
36 toggleable.removeClass("open");
37 toggleable.addClass("closed");
38 $(".toggle-img", toggleable).attr("title", "show").attr("src", (toRoot + "assets/images/triangle-closed.png"));
39 }
40 return false;
41}
42</script>
43<style>
44.toggleable {
45padding: .25em 1em;
46}
47.toggleme {
48 padding: 1em 1em 0 2em;
49 line-height:1em;
50}
51.toggleable a {
52 text-decoration:none;
53}
Dirk Dougherty0d1b0812010-04-07 17:05:16 -070054.toggleme a {
55 text-decoration:underline;
56}
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070057.toggleable.closed .toggleme {
58 display:none;
59}
60#jd-content .toggle-img {
61 margin:0;
62}
63</style>
Dirk Dougherty0d1b0812010-04-07 17:05:16 -070064
Robert Ly205d1c32011-06-28 13:13:14 -070065
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070066<div class="toggleable opened">
67 <a href="#" onclick="return toggleDiv(this)">
68 <img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-img" height="9px" width="9px" />
Robert Lydec97362011-09-22 10:33:28 -070069SDK Tools, Revision 13</a> <em>(September 2011)</em>
70 <div class="toggleme">
71 <dl>
72<dt>Dependencies:</dt>
73<dd>
74<p>If you are developing in Eclipse with ADT, note that the SDK Tools r13 is designed for use with
75ADT 12.0.0 and later. If you haven't already, we highly recommend updating your <a
76href="{@docRoot}sdk/eclipse-adt.html">ADT Plugin</a> to 12.0.0.</p>
77
78<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
79Ant</a> 1.8 or later.</p>
80
81<dt>General notes:</dt>
82<dd>
83 <ul>
84 <li>Fix compilation issue in Ant (<code>dex</code> step) when paths have spaces.</li>
85 <li>Fix issue in emulator installation when paths have spaces.</li>
86 <li>Fix issue when AVD paths have spaces.</li>
87 <li>Fix rendering issue when using emulator scaling (<a href="http://code.google.com/p/android/issues/detail?id=18299">see more</a>).</li>
88 </ul>
89</dd>
90</dl>
91</div>
92</div>
93
94
95<div class="toggleable closed">
96 <a href="#" onclick="return toggleDiv(this)">
97 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Robert Ly31ee77e2011-07-06 11:16:19 -070098SDK Tools, Revision 12</a> <em>(July 2011)</em>
Robert Ly205d1c32011-06-28 13:13:14 -070099 <div class="toggleme">
100 <dl>
101<dt>Dependencies:</dt>
102<dd>
103<p>If you are developing in Eclipse with ADT, note that the SDK Tools r12 is designed for use with
104ADT 12.0.0 and later. If you haven't already, we highly recommend updating your <a
105href="{@docRoot}sdk/eclipse-adt.html">ADT Plugin</a> to 12.0.0.</p>
106
107<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
108Ant</a> 1.8 or later.</p>
109
110<dt>General notes:</dt>
111<dd>
112 <ul>
113 <li>The AVD manager and emulator can now use system images
114 compiled for ARM v7 and x86 CPUs.</li>
115 </ul>
116</dd>
117</dl>
118</div>
119</div>
120
121<div class="toggleable closed">
122 <a href="#" onclick="return toggleDiv(this)">
123 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Doughertyb7c7f152011-03-25 11:54:46 -0700124SDK Tools, Revision 11</a> <em>(May 2011)</em>
Robert Lyccea5d22011-02-11 14:59:36 -0800125 <div class="toggleme">
126 <dl>
127<dt>Dependencies:</dt>
128<dd>
Scott Main19f72012011-05-05 18:27:49 -0700129<p>If you are developing in Eclipse with ADT, note that the SDK Tools r11 is designed for use with
130ADT 10.0.1 and later. If you haven't already, we highly recommend updating your <a
131href="{@docRoot}sdk/eclipse-adt.html">ADT Plugin</a> to 10.0.1.</p>
132
133<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
134Ant</a> 1.8 or later.</p>
135
136<dt>General notes:</dt>
137<dd>
138 <ul>
139 <li>Miscellaneous emulator changes to support Android 3.1.</li>
140 </ul>
141</dd>
142</dl>
143</div>
144</div>
145
146
147<div class="toggleable closed">
148 <a href="#" onclick="return toggleDiv(this)">
149 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px"
150width="9px" />
151SDK Tools, Revision 10</a> <em>(February 2011)</em>
152 <div class="toggleme">
153 <dl>
154<dt>Dependencies:</dt>
155<dd>
Robert Lyccea5d22011-02-11 14:59:36 -0800156<p>If you are developing in Eclipse with ADT, note that the SDK Tools r10 is
157designed for use with ADT 10.0.0 and later. After installing SDK Tools r10, we
158highly recommend updating your ADT Plugin to 10.0.0.</p>
159
160<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
161Ant</a> 1.8 or later.</p>
162
163<dt>General notes:</dt>
164<dd>
165 <ul>
Scott Main19f72012011-05-05 18:27:49 -0700166 <li>The tools now automatically generate Java Programming Language source files (in the
167<code>gen</code> directory) and
Robert Lyccea5d22011-02-11 14:59:36 -0800168 bytecode (in the <code>res/raw</code> directory) from your native <code>.rs</code> files</li>
169 </ul>
170</dd>
171</dl>
172</div>
173</div>
174
175
176
177<div class="toggleable closed">
178 <a href="#" onclick="return toggleDiv(this)">
179 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Robert Lyedc2aac2011-01-14 16:25:09 -0800180SDK Tools, Revision 9</a> <em>(January 2011)</em>
181 <div class="toggleme">
182 <dl>
183<dt>Dependencies:</dt>
184<dd>
185<p>If you are developing in Eclipse with ADT, note that the SDK Tools r9 is
186designed for use with ADT 9.0.0 and later. After installing SDK Tools r9, we
187highly recommend updating your ADT Plugin to 9.0.0.</p>
188
189<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
190Ant</a> 1.8 or later.</p>
191
192<dt>Upgrading to SDK Tools r9:</dt>
193<dd>
194<p>If you are upgrading to SDK Tools r9 from SDK Tools r7 or earlier, the default installed location
195for the <code>adb</code> tool has changed from <code>&lt;<em>SDK</em>&gt;/tools/adb</code> to
196<code>&lt;<em>SDK</em>&gt;/platform-tools/adb</code>. This means that you should
197add the new location to your PATH and modify any custom build scripts to
198reference the new location. Copying the <code>adb</code> executable from the new
199location to the old is not recommended, since subsequent updates to the SDK
200Tools will delete the file.</p>
201</dd>
202
203<dt>General notes:</dt>
204<dd>
205 <ul>
206 <li>The default ProGuard configuration, <code>proguard.cfg</code>, now ignores the following classes:
207 <ul>
208 <li>classes that extend {@link android.preference.Preference}</li>
209 <li>classes that extend {@link android.app.backup.BackupAgentHelper}</li>
210 </ul>
211 </li>
212 <li>Ant lib rules now allow you to override <code>java.encoding</code>, <code>java.source</code>,
213 and <code>java.target</code> properties.</li>
214 <li>The default encoding for the <code>javac</code> Ant task is now UTF-8.</li>
215 <li>The LogCat view in DDMS now properly displays UTF-8 characters.</li>
216 <li>The SDK Manager is more reliable on Windows. For details on the improvements, see the
217 <a href="http://tools.android.com/recent/sdkmanagerfixes">Android Tools Project Site</a>. </li>
Scott Mainf9af3012011-01-27 11:26:29 -0800218 <li>Early look at the new snapshot feature: To improve startup time for the emulator, you can
219enable snapshots for the system state. The emulator will then restore to the state when it last
220closed almost instantly. <strong>Note:</strong> The snapshot feature is still under active
221development and might not always perform as expected.</li>
Robert Lyedc2aac2011-01-14 16:25:09 -0800222 <li>Fixed the missing JAR file error that prevented <code>draw9patch</code> from running.</li>
223 <li>Fixed the Windows launch scripts <code>hierarchyviewer</code> and <code>ddms</code> to support
224 the new location of <code>adb</code>.</li>
Scott Main04f04b22011-01-21 19:11:23 -0800225 <li>Known issues with emulator performance: Because the Android emulator must simulate the ARM
226instruction set architecture on your computer, emulator performance is slow. We're working hard to
227resolve the performance issues and it will improve in future releases.</li>
Robert Lyedc2aac2011-01-14 16:25:09 -0800228 </ul>
229</dd>
230</dl>
231</div>
232</div>
233
234<div class="toggleable closed">
235 <a href="#" onclick="return toggleDiv(this)">
236 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty9f7580d2010-10-26 09:29:03 -0700237SDK Tools, Revision 8</a> <em>(December 2010)</em>
238 <div class="toggleme">
239
240<dl>
241<dt>Dependencies:</dt>
242<dd>
243<p>If you are developing in Eclipse with ADT, note that SDK Tools r8 is
244designed for use with ADT 8.0.0 and later. After installing SDK Tools r8, we
245highly recommend updating your ADT Plugin to 8.0.0.</p>
246
Scott Main92b03082010-12-14 17:55:27 -0800247<p>If you are developing outside Eclipse, you must have <a href="http://ant.apache.org/">Apache
248Ant</a> 1.8 or later.</p>
249
Dirk Dougherty9f7580d2010-10-26 09:29:03 -0700250<p>Also note that SDK Tools r8 requires a new SDK component called
251<em>Platform-tools</em>. The new Platform-tools component lets all SDK platforms
252(Android 2.1, Android 2.2, and so on) use the same (latest) version of build
253tools such as <code>adb</code>, <code>aapt</code>, <code>aidl</code>, and
254<code>dx</code>. To download the Platform-tools component, use the Android SDK
255Manager, as described in <a href="adding-components.html">Adding SDK
256Components</a></p>
257
258<dt>Upgrading from SDK Tools r7:</dt>
259<dd>
260<p>If you are upgrading to SDK Tools r8 from an earlier version, note that the
261the default installed location for the <code>adb</code> tool has changed from
262<code>&lt;<em>SDK</em>&gt;/tools/adb</code> to
263<code>&lt;<em>SDK</em>&gt;/platform-tools/adb</code>. This means that you should
264add the new location to your PATH and modify any custom build scripts to
265reference the new location. Copying the <code>adb</code> executable from the new
266location to the old is not recommended, since subsequent updates to the SDK
267Tools will delete the file.</p>
268</dd>
269
270<dt>General notes:</dt>
271<dd>
272<ul>
273<li>All SDK platforms now support Library Projects.</li>
274<li>Support for a true debug build. Developers no longer need to add the
275<code>android:debuggable</code> attribute to the
276<code>&lt;application&gt;</code> tag in the manifest &mdash; the build tools add
277the attribute automatically. In Eclipse/ADT, all incremental builds are assumed
278to be debug builds, so the tools insert <code>android:debuggable="true"</code>.
279When exporting a signed release build, the tools do not add the attribute. In
280Ant, a <code>ant debug</code> command automatically inserts the
281<code>android:debuggable="true"</code> attribute, while <code>ant release</code>
282does not. If <code>android:debuggable="true"</code> is manually set, then
283<code>ant release</code> will actually do a debug build, rather than a release
284build.</li>
285<li>Automatic ProGuard support in release builds. Developers generate a ProGuard
286configuration file using the <code>android</code> tool &mdash; the build tools
287then automatically run ProGuard against the project sources during the build.
288For more information, see the <a
289href="{@docRoot}guide/developing/tools/proguard.html">ProGuard</a>
290documentation. </li>
291<li>New overridable Ant javac properties: <code>java.encoding</code>,
292<code>java.source</code>, and <code>java.target</code> (default values are
293"ascii", "1.5", and "1.5", respectively).</li>
294<li>New UI for the HierarchyViewer tool.</li>
295</ul>
296</dd>
297</dl>
298 </div>
299</div>
300
301<div class="toggleable closed">
302 <a href="#" onclick="return toggleDiv(this)">
303 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty022171b2010-07-30 19:24:17 -0700304SDK Tools, Revision 7</a> <em>(September 2010)</em>
305 <div class="toggleme">
306
307<dl>
308<dt>Dependencies:</dt>
309<dd>
310<p>If you are developing in Eclipse with ADT, note that SDK Tools r7 is
311designed for use with ADT 0.9.8 and later. After installing SDK Tools r7, we
312highly recommend updating your ADT Plugin to 0.9.8.</p>
313</dd>
314
315<dt>General notes:</dt>
316<dd>
317<ul>
318<li>Added support for library projects that depend on other library projects.</li>
319<li>Adds support for aidl files in library projects.</li>
320<li>Adds support for extension targets in Ant build to perform tasks between the
321normal tasks: <code>-pre-build</code>, <code>-pre-compile</code>, and
322<code>-post-compile</code>.</li>
323<li>Adds support for "headless" SDK update. See <code>android -h update sdk</code>
324for more information.</li>
325<li>Fixes location control in DDMS to work in any locale not using '.' as a
326decimal point.</li>
327</li>
328</ul>
329</dd>
330</dl>
331 </div>
332</div>
333
334<div class="toggleable closed">
335 <a href="#" onclick="return toggleDiv(this)">
336 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty0d1b0812010-04-07 17:05:16 -0700337SDK Tools, Revision 6</a> <em>(May 2010)</em>
338 <div class="toggleme">
339
340<dl>
341<dt>Dependencies:</dt>
342<dd>
343<p>If you are developing in Eclipse with ADT, note that SDK Tools r6 is
344designed for use with ADT 0.9.7 and later. After installing SDK Tools r6, we
345highly recommend updating your ADT Plugin to 0.9.7.</p>
346</dd>
347
348<dt>Library projects:</dt>
349<dd>
350<p>The SDK Tools now support the use of <em>library projects</em> during
351development, a capability that lets you store shared Android application
352code and resources in a separate development project. You can then reference the
353library project from other Android projects and, at build time, the tools
354compile the shared code and resources as part of the dependent applications.
355More information about this feature is available in the <a
Robert Lyc74a69a82011-01-04 22:48:02 -0800356href="{@docRoot}guide/developing/projects/index.html#LibraryProjects">Creating and Managing Projects</a> document.</p>
357<p>If you are developing in Eclipse, <a href="eclipse-adt.html">ADT</a>
Dirk Dougherty0d1b0812010-04-07 17:05:16 -0700358provides the equivalent library project support.</p>
359</dd>
360</dl>
361 </div>
362</div>
363
364<div class="toggleable closed">
365 <a href="#" onclick="return toggleDiv(this)">
Dirk Dougherty74a74d32010-09-09 18:40:13 -0700366 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700367SDK Tools, Revision 5</a> <em>(March 2010)</em>
368 <div class="toggleme">
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800369
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700370<dl>
371<dt>Dependencies:</dt>
372<dd><ul>
373<li>If you are developing in Eclipse with ADT, note that SDK Tools r5 is
374designed for use with ADT 0.9.6 and later. After installing SDK Tools r5, we
375highly recommend updating your ADT Plugin to 0.9.6.</li>
376<li>For Mac OS platforms, OS X 10.4.x (Tiger) is no longer
377officially supported. </li>
378</ul>
379</dd>
380
381<dt>SDK and AVD Manager:</dt>
382<dd>
383<ul>
384<li>Fixes SSL download for the standalone version of the SDK Updater.</li>
385<li>Fixes issue with 64-bit JVM on Windows.</li>
386<li>Adds support for platform samples components.</li>
387<li>Improves support for dependency between components.</li>
388<li>AVDs now sorted by API level.</li>
389<li>The AVD creation dialog now enforces a minimum SD card size of 9MB.</li>
390<li>Prevents deletion of running AVDs.</li>
391<li>Settings are now automatically saved, no need to click "Apply".</li>
392</ul>
393</dd>
394
395<dt>Emulator:</dt>
396<dd>
397<ul>
398<li>Emulator now requires SD card to be 9MB or more.</li>
399</ul>
400</dd>
401
402<dt>Layoutopt:</dt>
403<dd>
404<ul>
405<li>Fixes <code>layoutopt.bat</code> to execute correctly on Windows.</li>
406</ul>
407</dd>
408</dl>
409 </div>
410</div>
411
412<div class="toggleable closed">
413 <a href="#" onclick="return toggleDiv(this)">
414 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
415SDK Tools, Revision 4</a> <em>(December 2009)</em>
416 <div class="toggleme">
417
418<dl>
419<dt>Dependencies:</dt>
420<dd><p>SDK Tools r4 is compatible with ADT 0.9.5 and later, but not
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800421compatible with earlier versions. If you are developing in Eclipse with ADT, you
422<strong>must</strong> update your ADT plugin to version 0.9.5 or higher if you
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700423install SDK Tools r4 in your SDK. </p></dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800424
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700425<dt>General notes:</dt>
426<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800427<ul>
Robert Lydec97362011-09-22 10:33:28 -0700428<li>Launcher script now forces GDK_NATIVE_WINDOW=true (linux only), to fix a
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800429compatibility issue between GTK and SWT.</li>
430</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700431</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800432
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700433<dt>Android SDK and AVD Manager:</dt>
434<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800435<ul>
436<li>AVD Launch dialog now shows scale value.</li>
Robert Lydec97362011-09-22 10:33:28 -0700437<li>Fixes potential NPE in SDK Manager on AVD launch, for older AVD with no
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800438skin name specified.</li>
439<li>Fixes XML validation issue in on older Java versions.</li>
440<li>No longer forces the use of Java 1.5 on Mac OS X.</li>
441</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700442</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800443
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700444<dt>Emulator:</dt>
445<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800446<ul>
447<li>No longer limits the size of the system partition.</li>
448</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700449</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800450
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700451<dt>Ant build tools:</dt>
452<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800453<ul>
454<li>.apk packaging now properly ignores vi swap files as well as hidden files.</li>
455</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700456</dd>
457</dl>
458 </div>
459</div>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800460
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700461<div class="toggleable closed">
462 <a href="#" onclick="return toggleDiv(this)">
463 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
464SDK Tools, Revision 3</a> <em>(October 2009)</em>
465 <div class="toggleme">
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700466
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700467<dl>
468<dt>Dependencies:</dt>
469<dd><p>SDK Tools r3 is compatible with ADT 0.9.4 and later, but not
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700470compatible with earlier versions. If you are developing in Eclipse with ADT, you
471<strong>must</strong> update your ADT plugin to version 0.9.4 or higher if you
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700472install SDK Tools r3 in your SDK.</p>
473</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700474
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700475<dt>Android tool:</dt>
476<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700477<ul>
478<li>Adds new <code>android create test-project</code> and <code>android update
479test-project</code> commands to allow for greater flexibility in the location of the
480main and test projects.</li>
481</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700482</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700483
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700484<dt>DDMS:</dt>
485<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700486<ul>
Scott Main19f72012011-05-05 18:27:49 -0700487<li>Adds a button to dump HPROF file for running applications (app must be able
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700488to write to the sdcard).</li>
489<li>Button to start/stop profiling of a running application (app must be able to
490write to the sdcard). Upon stop, Traceview will automatically be launched to
491display the trace.</li>
492<li>Fixed DDMS, Traceview, and the AVD Mananger/SDK Updater to run on Mac OS X
49310.6.</li>
494<li>Fixed screenshot support for devices running 32-bit framebuffer.</li>
495</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700496</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700497
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700498<dt>Android SDK and AVD Manager:</dt>
499<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700500<ul>
501<li>Provides a new UI that lets you set options for controlling
Robert Lydec97362011-09-22 10:33:28 -0700502the emulator skin, screen size/density, and scale factor used when launching
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700503an AVD.</li>
504<li>Provides improved AVD creation UI, which lets you customize the hardware
505properties of your AVDs.</li>
506<li>Now enforces dependencies between platforms and tools components, and
507between SDK add-ons and platforms.</li>
508</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700509</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700510
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700511<dt>Layoutopt, a new tool for optimizing layouts:</dt>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700512
Robert Lydec97362011-09-22 10:33:28 -0700513<dd><p>The SDK Tools r3 package includes <code>layoutopt</code>, a new command-line
514tool that helps you optimize your layout hierarchies. When run against your
515layout files, the tool analyzes their hierarchies and notifies you of
516inefficiencies and other potential issues. The tool also provides simple
517solutions for the issues it finds. For usage, see <a
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700518href="/guide/developing/tools/layoutopt.html">layoutopt</a>.</p>
519</dd>
520</dl>
521 </div>
522</div>