blob: 9316fae07c16f6ccbdff0e0c2effa6bc0bb050c7 [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
Dirk Dougherty7b229ef2010-03-26 17:32:26 -07007<p>If you are new to the Android SDK, the <a
8href="{@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
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070018<h2 id="notes">Revisions</h2>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -080019
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070020<p>The sections below provide notes about successive releases of
21the SDK Tools, as denoted by revision number. To determine what revision of the SDK
22Tools you are using, refer to the "Installed Packages" listing in the Android SDK
23and AVD Manager. </p>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -080024
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070025<script type="text/javascript">
26function toggleDiv(link) {
27 var toggleable = $(link).parent();
28 if (toggleable.hasClass("closed")) {
29 //$(".toggleme", toggleable).slideDown("fast");
30 toggleable.removeClass("closed");
31 toggleable.addClass("open");
32 $(".toggle-img", toggleable).attr("title", "hide").attr("src", (toRoot + "assets/images/triangle-opened.png"));
33 } else {
34 //$(".toggleme", toggleable).slideUp("fast");
35 toggleable.removeClass("open");
36 toggleable.addClass("closed");
37 $(".toggle-img", toggleable).attr("title", "show").attr("src", (toRoot + "assets/images/triangle-closed.png"));
38 }
39 return false;
40}
41</script>
42<style>
43.toggleable {
44padding: .25em 1em;
45}
46.toggleme {
47 padding: 1em 1em 0 2em;
48 line-height:1em;
49}
50.toggleable a {
51 text-decoration:none;
52}
Dirk Dougherty0d1b0812010-04-07 17:05:16 -070053.toggleme a {
54 text-decoration:underline;
55}
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070056.toggleable.closed .toggleme {
57 display:none;
58}
59#jd-content .toggle-img {
60 margin:0;
61}
62</style>
Dirk Dougherty0d1b0812010-04-07 17:05:16 -070063
Dirk Dougherty7b229ef2010-03-26 17:32:26 -070064<div class="toggleable opened">
65 <a href="#" onclick="return toggleDiv(this)">
66 <img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty9f7580d2010-10-26 09:29:03 -070067SDK Tools, Revision 8</a> <em>(December 2010)</em>
68 <div class="toggleme">
69
70<dl>
71<dt>Dependencies:</dt>
72<dd>
73<p>If you are developing in Eclipse with ADT, note that SDK Tools r8 is
74designed for use with ADT 8.0.0 and later. After installing SDK Tools r8, we
75highly recommend updating your ADT Plugin to 8.0.0.</p>
76
77<p>Also note that SDK Tools r8 requires a new SDK component called
78<em>Platform-tools</em>. The new Platform-tools component lets all SDK platforms
79(Android 2.1, Android 2.2, and so on) use the same (latest) version of build
80tools such as <code>adb</code>, <code>aapt</code>, <code>aidl</code>, and
81<code>dx</code>. To download the Platform-tools component, use the Android SDK
82Manager, as described in <a href="adding-components.html">Adding SDK
83Components</a></p>
84
85<dt>Upgrading from SDK Tools r7:</dt>
86<dd>
87<p>If you are upgrading to SDK Tools r8 from an earlier version, note that the
88the default installed location for the <code>adb</code> tool has changed from
89<code>&lt;<em>SDK</em>&gt;/tools/adb</code> to
90<code>&lt;<em>SDK</em>&gt;/platform-tools/adb</code>. This means that you should
91add the new location to your PATH and modify any custom build scripts to
92reference the new location. Copying the <code>adb</code> executable from the new
93location to the old is not recommended, since subsequent updates to the SDK
94Tools will delete the file.</p>
95</dd>
96
97<dt>General notes:</dt>
98<dd>
99<ul>
100<li>All SDK platforms now support Library Projects.</li>
101<li>Support for a true debug build. Developers no longer need to add the
102<code>android:debuggable</code> attribute to the
103<code>&lt;application&gt;</code> tag in the manifest &mdash; the build tools add
104the attribute automatically. In Eclipse/ADT, all incremental builds are assumed
105to be debug builds, so the tools insert <code>android:debuggable="true"</code>.
106When exporting a signed release build, the tools do not add the attribute. In
107Ant, a <code>ant debug</code> command automatically inserts the
108<code>android:debuggable="true"</code> attribute, while <code>ant release</code>
109does not. If <code>android:debuggable="true"</code> is manually set, then
110<code>ant release</code> will actually do a debug build, rather than a release
111build.</li>
112<li>Automatic ProGuard support in release builds. Developers generate a ProGuard
113configuration file using the <code>android</code> tool &mdash; the build tools
114then automatically run ProGuard against the project sources during the build.
115For more information, see the <a
116href="{@docRoot}guide/developing/tools/proguard.html">ProGuard</a>
117documentation. </li>
118<li>New overridable Ant javac properties: <code>java.encoding</code>,
119<code>java.source</code>, and <code>java.target</code> (default values are
120"ascii", "1.5", and "1.5", respectively).</li>
121<li>New UI for the HierarchyViewer tool.</li>
122</ul>
123</dd>
124</dl>
125 </div>
126</div>
127
128<div class="toggleable closed">
129 <a href="#" onclick="return toggleDiv(this)">
130 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty022171b2010-07-30 19:24:17 -0700131SDK Tools, Revision 7</a> <em>(September 2010)</em>
132 <div class="toggleme">
133
134<dl>
135<dt>Dependencies:</dt>
136<dd>
137<p>If you are developing in Eclipse with ADT, note that SDK Tools r7 is
138designed for use with ADT 0.9.8 and later. After installing SDK Tools r7, we
139highly recommend updating your ADT Plugin to 0.9.8.</p>
140</dd>
141
142<dt>General notes:</dt>
143<dd>
144<ul>
145<li>Added support for library projects that depend on other library projects.</li>
146<li>Adds support for aidl files in library projects.</li>
147<li>Adds support for extension targets in Ant build to perform tasks between the
148normal tasks: <code>-pre-build</code>, <code>-pre-compile</code>, and
149<code>-post-compile</code>.</li>
150<li>Adds support for "headless" SDK update. See <code>android -h update sdk</code>
151for more information.</li>
152<li>Fixes location control in DDMS to work in any locale not using '.' as a
153decimal point.</li>
154</li>
155</ul>
156</dd>
157</dl>
158 </div>
159</div>
160
161<div class="toggleable closed">
162 <a href="#" onclick="return toggleDiv(this)">
163 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty0d1b0812010-04-07 17:05:16 -0700164SDK Tools, Revision 6</a> <em>(May 2010)</em>
165 <div class="toggleme">
166
167<dl>
168<dt>Dependencies:</dt>
169<dd>
170<p>If you are developing in Eclipse with ADT, note that SDK Tools r6 is
171designed for use with ADT 0.9.7 and later. After installing SDK Tools r6, we
172highly recommend updating your ADT Plugin to 0.9.7.</p>
173</dd>
174
175<dt>Library projects:</dt>
176<dd>
177<p>The SDK Tools now support the use of <em>library projects</em> during
178development, a capability that lets you store shared Android application
179code and resources in a separate development project. You can then reference the
180library project from other Android projects and, at build time, the tools
181compile the shared code and resources as part of the dependent applications.
182More information about this feature is available in the <a
183href="{@docRoot}guide/developing/other-ide.html#libraryProject">Developing
184in Other IDEs</a> document.</p>
185<p>If you are developing in Eclipse, <a href="eclipse-adt.html">ADT 0.9.7</a>
186provides the equivalent library project support.</p>
187</dd>
188</dl>
189 </div>
190</div>
191
192<div class="toggleable closed">
193 <a href="#" onclick="return toggleDiv(this)">
Dirk Dougherty74a74d32010-09-09 18:40:13 -0700194 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700195SDK Tools, Revision 5</a> <em>(March 2010)</em>
196 <div class="toggleme">
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800197
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700198<dl>
199<dt>Dependencies:</dt>
200<dd><ul>
201<li>If you are developing in Eclipse with ADT, note that SDK Tools r5 is
202designed for use with ADT 0.9.6 and later. After installing SDK Tools r5, we
203highly recommend updating your ADT Plugin to 0.9.6.</li>
204<li>For Mac OS platforms, OS X 10.4.x (Tiger) is no longer
205officially supported. </li>
206</ul>
207</dd>
208
209<dt>SDK and AVD Manager:</dt>
210<dd>
211<ul>
212<li>Fixes SSL download for the standalone version of the SDK Updater.</li>
213<li>Fixes issue with 64-bit JVM on Windows.</li>
214<li>Adds support for platform samples components.</li>
215<li>Improves support for dependency between components.</li>
216<li>AVDs now sorted by API level.</li>
217<li>The AVD creation dialog now enforces a minimum SD card size of 9MB.</li>
218<li>Prevents deletion of running AVDs.</li>
219<li>Settings are now automatically saved, no need to click "Apply".</li>
220</ul>
221</dd>
222
223<dt>Emulator:</dt>
224<dd>
225<ul>
226<li>Emulator now requires SD card to be 9MB or more.</li>
227</ul>
228</dd>
229
230<dt>Layoutopt:</dt>
231<dd>
232<ul>
233<li>Fixes <code>layoutopt.bat</code> to execute correctly on Windows.</li>
234</ul>
235</dd>
236</dl>
237 </div>
238</div>
239
240<div class="toggleable closed">
241 <a href="#" onclick="return toggleDiv(this)">
242 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
243SDK Tools, Revision 4</a> <em>(December 2009)</em>
244 <div class="toggleme">
245
246<dl>
247<dt>Dependencies:</dt>
248<dd><p>SDK Tools r4 is compatible with ADT 0.9.5 and later, but not
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800249compatible with earlier versions. If you are developing in Eclipse with ADT, you
250<strong>must</strong> update your ADT plugin to version 0.9.5 or higher if you
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700251install SDK Tools r4 in your SDK. </p></dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800252
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700253<dt>General notes:</dt>
254<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800255<ul>
256<li>Launcher script now forces GDK_NATIVE_WINDOW=true (linux only), to fix a
257compatibility issue between GTK and SWT.</li>
258</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700259</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800260
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700261<dt>Android SDK and AVD Manager:</dt>
262<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800263<ul>
264<li>AVD Launch dialog now shows scale value.</li>
265<li>Fixes potential NPE in SDK Manager on AVD launch, for older AVD with no
266skin name specified.</li>
267<li>Fixes XML validation issue in on older Java versions.</li>
268<li>No longer forces the use of Java 1.5 on Mac OS X.</li>
269</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700270</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800271
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700272<dt>Emulator:</dt>
273<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800274<ul>
275<li>No longer limits the size of the system partition.</li>
276</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700277</dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800278
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700279<dt>Ant build tools:</dt>
280<dd>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800281<ul>
282<li>.apk packaging now properly ignores vi swap files as well as hidden files.</li>
283</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700284</dd>
285</dl>
286 </div>
287</div>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800288
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700289<div class="toggleable closed">
290 <a href="#" onclick="return toggleDiv(this)">
291 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
292SDK Tools, Revision 3</a> <em>(October 2009)</em>
293 <div class="toggleme">
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700294
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700295<dl>
296<dt>Dependencies:</dt>
297<dd><p>SDK Tools r3 is compatible with ADT 0.9.4 and later, but not
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700298compatible with earlier versions. If you are developing in Eclipse with ADT, you
299<strong>must</strong> update your ADT plugin to version 0.9.4 or higher if you
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700300install SDK Tools r3 in your SDK.</p>
301</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700302
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700303<dt>Android tool:</dt>
304<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700305<ul>
306<li>Adds new <code>android create test-project</code> and <code>android update
307test-project</code> commands to allow for greater flexibility in the location of the
308main and test projects.</li>
309</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700310</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700311
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700312<dt>DDMS:</dt>
313<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700314<ul>
315<li>Adds a button to dump HPROF file for running appplications (app must be able
316to write to the sdcard).</li>
317<li>Button to start/stop profiling of a running application (app must be able to
318write to the sdcard). Upon stop, Traceview will automatically be launched to
319display the trace.</li>
320<li>Fixed DDMS, Traceview, and the AVD Mananger/SDK Updater to run on Mac OS X
32110.6.</li>
322<li>Fixed screenshot support for devices running 32-bit framebuffer.</li>
323</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700324</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700325
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700326<dt>Android SDK and AVD Manager:</dt>
327<dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700328<ul>
329<li>Provides a new UI that lets you set options for controlling
330the emulator skin, screen size/density, and scale factor used when launching
331an AVD.</li>
332<li>Provides improved AVD creation UI, which lets you customize the hardware
333properties of your AVDs.</li>
334<li>Now enforces dependencies between platforms and tools components, and
335between SDK add-ons and platforms.</li>
336</ul>
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700337</dd>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700338
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700339<dt>Layoutopt, a new tool for optimizing layouts:</dt>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700340
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700341<dd><p>The SDK Tools r3 package includes <code>layoutopt</code>, a new command-line
Dirk Doughertybf15ce62009-10-23 19:17:12 -0700342tool that helps you optimize your layout hierarchies. When run against your
343layout files, the tool analyzes their hierarchies and notifies you of
344inefficiencies and other potential issues. The tool also provides simple
345solutions for the issues it finds. For usage, see <a
Dirk Dougherty7b229ef2010-03-26 17:32:26 -0700346href="/guide/developing/tools/layoutopt.html">layoutopt</a>.</p>
347</dd>
348</dl>
349 </div>
350</div>