blob: 7fbed5ba8e0a84c51f907ad7e40f6cc335d4f916 [file] [log] [blame]
Tor Norbyea79073e2011-10-20 18:33:24 -0700116.0.0:
2* New "lint" feature which scans the Android projects for potential
3 problems such as missing translations, duplicate ids between layouts
4 that include each other, using px instead of dp units, hardcoded
5 strings, missing contentDescriptions, obsolete Proguard
6 configuration files, etc. Lint can be run on the command line, but
7 it is also integrated into the Problems view in Eclipse, and there
8 are also quickfixes available for many of the reported errors.
9
1015.0.0
11Critical bug fixes only.
12
1314.0.0
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080014- Build system:
Tor Norbyef0585b92011-08-19 19:00:45 -070015 - (TODO: More info) Improved library projects
16 - Improved incremental builds
17 - Resource compilation is run much less frequently. It is no
18 longer run when strings are edited, or when layouts are edited
19 (unless a new id is introduced), and it is no longer run once
20 per library project (!)
21 - Resource compilation is no longer done for normal save
22 operations, only when running or debugging (option added in ADT
23 12 now on by default.)
24 - There is a new "PNG crunch cache", which means image crunching
25 is only done once, not once per build which is significant for
26 projects with many resources
27 - Incremental ant builds
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080028 - ADT now uses bin/classes to output the java compilation
29 and bin/ for Android specific classes. This will make bin show up
30 in the package explorer.
Tor Norbyef0585b92011-08-19 19:00:45 -070031- DDMS
32 - Brand new logcat view. Fixes bugs, displays and filters by
33 application names instead of just pids, fronts when application
34 runs.
35- XML Editing
36 - New XML formatter which formats all XML files according to the
37 standard Android coding style. The formatter can also reorder
38 attributes to follow the recommended order.
39 - Improved "smart indent": automatic indentation and un-indentation
40 when pressing Return in XML editors
41 - Go to Matching (Ctrl-Shift-P) in XML files can now jump between
42 opening and closing tags
43 - Changes made by the layout editor are automatically run through
44 the new XML formatter.
45 - Select Enclosing Element should now work on the Mac as well.
46- Java Editing
47 - Quickfix for extracting Strings when the caret is inside a String
48- Layout Editor
49 - New GridLayout support
50 - Tooltip feedback for resizing and dragging operations. For
51 example, when dragging in a relative layout, the proposed
52 constraints are shown, and when resizing the new dimensions are
53 shown.
54 - New "Remove Container" visual refactoring which removes the
55 children of a container up to the top level and transfers
56 namespace and layout attributes if necessary.
57 - Improved access to properties in the context menu: The most
58 frequently set attributes for each view are listed at the top of
59 the menu, and the properties menu offers access to the most
60 recently set attributes, attributes organized by their defining
61 view, and layout attributes only or all attributes alphabetically.
62 - The context menu now also contains pull-right menus for accessing
63 properties of the parents, which is useful when the children fully
64 cover the parent making it hard to select on its own.
65 - Ability to suppress rendering fidelity warnings.
66- Asset Studio integration: Wizard creation of launcher icons, menu
67 icons, tab icons, etc.
Tor Norbyee92f8162011-09-27 08:59:15 -070068- New Welcome Wizard to help installing and configuring the SDK
69 platforms.
Tor Norbye4dfe5712011-09-13 14:35:48 -070070- The New Project and the New XML File wizards have been reworked into
71 multiple pages. Sample Projects are now copied into the workspace
72 such that they can be modified and deleted without affecting the
73 master copy.
74- The dependency on Eclipse GEF was removed.
75- Many bug fixes, and in particular some critical bug fixes on Linux
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080076
Tor Norbyef0585b92011-08-19 19:00:45 -07007713.0.0
78- Tools release only (command line tools)
79
8012.0.0 (July 6th, 2011)
Tor Norbye61be14c2011-06-13 13:22:32 -070081- Many bug fixes!
82- Visual Layout Editor:
83 - New RelativeLayout drop support with guideline suggestions for
84 attachments and cycle prevention.
85 - Resize support in most layouts. In LinearLayout, sizes are mapped
86 to weights. Guideline snapping to wrap_content and match_parent.
87 - Previews of drawables and colors in the resource chooser dialogs.
88 - Improved error messages and links for rendering errors, including
89 detection of misspellings of class names.
90- Build system: Delay post compiler phase until actual export or debug
91 to speed up interactive file saves. (This is off by default but can
92 be enabled in the ADT options panel.)
Xavier Ducrohet69a82902011-06-06 16:45:50 -070093
Tor Norbyef0585b92011-08-19 19:00:45 -07009411.0.0 (June 6th, 2011)
Tor Norbye3dcfd762011-04-28 18:41:09 -070095- Visual Refactoring:
96 - The new "Extract Style" refactoring pulls out style constants and
Tor Norbyee1777152011-05-25 15:50:53 -070097 defines them as style rules instead.
Tor Norbye3dcfd762011-04-28 18:41:09 -070098 - The new "Wrap in Container" refactoring surrounds the selected
99 views with a new layout, and transfers namespace and layout
100 parameters to the new parent
101 - The new "Change Widget Type" refactoring changes the type of the
102 selected views to a new type. (Also, a new selection context menu
103 in the visual layout editor makes it easy to select siblings as
104 well as views anywhere in the layout that have the same type).
105 - The new "Change Layout" refactoring changes layouts from one type
106 to another, and can also flatten a layout hierarchy.
107 - The "Extract as Include" refactoring now finds identical fragments
108 in other layouts and offers to combine all into a single include.
109 - There is a new Refactoring Quick Assistant which can be invoked
110 from the XML editor (with Ctrl-1) to apply any of the above
111 refactorings (and Extract String) to the current selection.
112- Visual Layout Editor:
113 - Improved "rendering fidelity": The layout preview has been
114 improved and should more closely match the rendering on actual
115 devices.
116 - The visual editor now previews ListViews at designtime. By
117 default, a two-line list item is shown, but with a context menu
118 you can pick any arbitrary layout to be used for the list items,
119 and you can also pick the header and footer layouts.
120 - The palette now supports "configurations" where a single view is
121 presented in various different configurations. For example, there
122 is a whole "Textfields" palette category where the EditText view
123 can be dragged in as a password field, an e-mail field, a phone
124 field, and so on. Similarly, TextViews are offered preconfigured
125 with large, normal and small theme sizes, and LinearLayouts are
126 offered both in horizontal and vertical configurations.
127 - The palette supports custom views, picking up any custom
128 implementations of the View class in your project source folders
129 or in included libraries, and these can be dragged into layouts.
Tor Norbyefb48dde2011-05-19 13:52:31 -0700130 - Fragments support: Fragments are available in the palette, and in
131 the tool you can choose which layout to show rendered for a given
132 fragment tag. Go to declaration works for fragment classes.
Tor Norbye3dcfd762011-04-28 18:41:09 -0700133 - The layout editor automatically applies a "zoom to fit" for newly
134 opened files as well as on device size and orientation changes to
135 ensure that large layouts are always fully visible unless you
136 manually zoom in.
137 - You can drop an "include" tag from the palette, which will pop up
138 a layout chooser, and the chosen layout is added as an include.
139 Similarly, dropping images or image buttons will pop up image
140 resource choosers to initialize the new image with.
141 - The configuration chooser now applies the "Render Target" and
142 "Locale" settings project wide, making it trivial to check the
143 layouts for different languages or render targets without having
144 to configure these individually for each layout.
145 - The layout editor is smarter about picking a default theme to
146 render a layout with, consulting factors like theme registrations
147 in the manifest, the SDK version, etc.
Tor Norbyefb48dde2011-05-19 13:52:31 -0700148 - The layout editor is also smarter about picking a default
149 configuration to render a layout with, defaulting to the currently
150 visible configuration in the previous file. It also considers the
151 SDK target to determine whether to default to a tablet or phone
152 screen size.
153 - Basic focus support: The first text field dropped in a layout is
154 assigned focus, and there are "Request Focus" and "Clear Focus"
155 context menu items on text fields to change the focus.
Tor Norbye3dcfd762011-04-28 18:41:09 -0700156- XML editors:
157 - Code completion has been significantly improved. It now works
158 within <style> elements, it completes dimensional units,
159 it sorts resource paths in values based on the attribute name,
160 etc. There are also many fixes to handle text replacement.
161 - AAPT errors are handled better. They are now underlined for the
162 relevant range in the editor, and a new quickfix makes it trivial
163 to create missing resources.
164 - Code completion for drawable, animation and color XML files.
165- DDMS:
166 - "New Folder" action in the File Explorer
167 - The screenshot dialog will add timestamps to the filenames, and
168 preserve the orientation on snapshot refresh
169- TraceView: Mouse-wheel zoom support in the timeline
170- The New Android Project wizard now supports Eclipse working sets
171- Most of the tools have improved integration with the Mac OSX
172 system menu bar.
173- Most of the tools have new launcher icons.
174
Tor Norbyef0585b92011-08-19 19:00:45 -070017510.0.1 (March, 2011)
Tor Norbye3301b682011-04-05 08:59:12 -0700176- Temporary work-around to resolve the rare cases in which the layout
177 editor will not open.
178- Fix issue in which ADT 10.0.0 would install on Eclipse 3.4 and
179 lower, even though ADT requires Eclipse 3.5 or higher (as of
180 10.0.0).
181
Tor Norbyef0585b92011-08-19 19:00:45 -070018210.0.0 (February 22nd, 2011)
Tor Norbye3301b682011-04-05 08:59:12 -0700183- The tools now automatically generate Java Programming Language
184 source files (in the gen/ directory) and bytecode (in the res/raw/
185 directory) from your .rs files.
186- A Binary XML editor has been added.
187- Traceview is now integrated into the Eclipse UI.
188- The "Go To Declaration" feature for XML and .java files quickly show
189 all the matches in the project and allows you jump to specific items
190 such as string translations or onClick handlers.
191- The Resource Chooser can create items such as dimensions, integers,
192 ids, and booleans.
193- Improvements to the Visual Layout Editor:
194 - A new Palette with categories and rendering previews.
195 - A Layout Actions bar that provides quick access to common layout
196 operations.
197 - When the Android 3.0 rendering library is selected, layouts render
198 more like they do on devices. This includes rendering of status
199 and title bars to more accurately reflect the actual screen space
200 available to applications.
201 - Zoom improvements such as fit to view, persistent scale, and
202 keyboard access..
203 - Further improvements to <merge> layouts, as well as layouts with
204 gesture overlays.
205 - Improved rendering error diagnostics.
206
Tor Norbyef0585b92011-08-19 19:00:45 -07002079.0.0 (January 26, 2011)
Xavier Ducrohet484e7f32010-11-17 15:17:59 -0800208- Visual Layout Editor
Tor Norbye9f321db2011-01-10 19:45:35 -0800209 - Empty layouts with 0,0 size are now automatically expanded when
210 selected and during drag and drop
211 - Rendering target can now be changed from the default (project
212 target)
213 - When choosing resources for rendering, the API level is properly
214 handled
Tor Norbyee14b92a2011-01-10 19:20:45 -0800215 - Improved support for rendering <include> and <merge> views
Tor Norbye9f321db2011-01-10 19:45:35 -0800216 - "Extract as Include" refactoring to extract selected views into
217 a separate included layout.
218 - String and reference properties can be edited from the layout
219 editor's context menu
220 - Rewritten outline drag & drop handling, improved label colors
221 and content
222 - The generated XML will be better formatted. Full XML formatter
223 can be enabled in the preferences (under Android > Editors), but
224 will touch part of the XML that isn't modified.
225 - Automatic configuration of many widgets on drop, such as
226 automatically filling a TextView in a vertical LinearLayout,
227 adding rows to new tables, etc.
228 - Double click views to jump to the corresponding XML declaration,
229 or for included views, to the included layout file
Tor Norbye6f147bd2011-01-17 22:25:54 -0800230 - Improved support for various views (such as TabHosts and
231 SlidingDrawers) when rendered using Honeycomb
Tor Norbye9f321db2011-01-10 19:45:35 -0800232- Go to Declaration hyperlinks for navigating from @resource
233 references to their XML declarations, from the manifest file to
234 activity and service classes, from Java access of resource R fields
235 to the XML declarations, etc.
Xavier Ducrohet5e9522e2011-01-06 18:02:13 -0800236- Logcat view in DDMS now properly displays UTF-8 characters.
237
Tor Norbyef0585b92011-08-19 19:00:45 -07002388.0.1 (October 2010)
Tor Norbye9f321db2011-01-10 19:45:35 -0800239- Fix compilation issue in Android projects referencing standard Java
240 projects.
Xavier Ducrohet3e7d21a2010-12-07 12:16:53 -0800241- Better error reporting when exporting applications for release.
242
Tor Norbyef0585b92011-08-19 19:00:45 -07002438.0.0 (October 2010)
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700244- New version number scheme following the SDK Tools revision number.
Tor Norbye9f321db2011-01-10 19:45:35 -0800245- Support for true debug build. No need to change the value of
246 debuggable in the Android Manifest. Incremental build will
247 automatically insert debuggable==true while using the "export
248 signed/unsigned application package" will not. If debuggable=true
249 is set, then release builds will actually do a debug build.
250- Automatic Proguard support in release builds. Only need to have a
251 proguard.config property in default.properties that points to a
252 proguard config file.
253- Completely rewritten Visual Layout Editor. This is very much a work
254 in progress.
255 - full drag and drop from palette to layout for all Layout
256 classes.
257 - Move widgets inside a Layout view, from one Layout view to
258 another and from one layout file to another.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -0700259 - Contextual menu with enum/flag type properties.
260 - New zoom controls.
261- New HierarchyViewer plug-in integrated in Eclipse.
Tor Norbye9f321db2011-01-10 19:45:35 -0800262- Android launch configurations don't recompile the whole workspace on
263 launch anymore.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -0700264- android.jar source and javadoc location can now be configured.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700265
Xavier Ducrohet6f43b412010-09-24 07:19:37 -07002660.9.9:
Tor Norbye9f321db2011-01-10 19:45:35 -0800267- Fix bug where ADT would delete the source folder of projects
268 imported from version control.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700269
Xavier Ducrohet6d092a42010-06-09 11:23:57 -07002700.9.8:
Tor Norbye9f321db2011-01-10 19:45:35 -0800271- New Action "Rename Application Package" (under the "Android Tools"
272 contextual menu) will do a full application package refatoring.
273- Fixed issue with library project names containing characters that
274 aren't compatible with Eclipse path variable. The link between the
275 main project and the library would fail to create.
276- Added support for library projects that don't have a source folder
277 called "src". There is now support for any number of source folder,
278 with no name restriction. They can even be in sub folder such as
279 "src/java".
Xavier Ducrohetb4e47552010-07-01 18:01:43 -0700280- Added support for libraries with library dependencies.
Tor Norbye9f321db2011-01-10 19:45:35 -0800281- added support for new resource qualifiers: car/desk, night/notnight
282 and navexposed/navhidden
283- Added more device screen types for the layout editor. All screen
284 resolution/density combinations from
285 http://developer.android.com/guide/practices/screens_support.html#range
286 is now available.
Xavier Ducrohet6d092a42010-06-09 11:23:57 -0700287
Xavier Ducroheteee4bf12010-03-17 11:47:43 -07002880.9.7:
289- Support for library projects
Tor Norbye9f321db2011-01-10 19:45:35 -0800290- Updated Property panel for Android project to edit library
291 dependencies.
Xavier Ducroheteee4bf12010-03-17 11:47:43 -0700292
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -08002930.9.6:
Tor Norbye9f321db2011-01-10 19:45:35 -0800294- Editing default.properties outside of eclipse will automatically
295 update the project
296- Fix issue when launching ADT the first time with the SDK Usage panel
297 that could create a deadlock between modal dialogs
298- Launched applications from ADT now behave as if they were clicked
299 from the Home screen of the emulator.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800300- AVD creation dialog now enforce sd card of 9MB or higher
Tor Norbye9f321db2011-01-10 19:45:35 -0800301- Fixed issue where add-on with no optional library would not show up
302 as valid targets for application launches.
303- Loads the SDK content only when a project requires it. This will
304 make Eclipse use less resources when the SDK contains many versions
305 of Android.
Xavier Ducrohet244d1812009-12-08 16:05:19 -0800306- DDMS plug-in now contains the Allocation Tracker view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800307- Lots of fixes in the configuration selector of the Visual Layout
308 Editor.
309- Explode mode in the Visual Layout Editor adds a margin to all layout
310 objects so that it's easier to see embedded layouts
311- Outline mode in the Visual Layout Editor draws layout outline to
312 make it easier to see layout objects.
Xavier Ducrohete83bdbb2010-01-25 16:36:29 -0800313- Fixed issues with the New Project Wizard when selecting samples.
314- Fixed possible crash when launching applications
Tor Norbye9f321db2011-01-10 19:45:35 -0800315- New action in the Logcat view: "Go to problem" lets you go directly
316 from an exception trace output to the code.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800317
3180.9.5:
Tor Norbye9f321db2011-01-10 19:45:35 -0800319- Misc fixes in the SDK Updater
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800320
Raphaelc70406f2009-10-02 19:41:49 -07003210.9.4:
322- New "Create project from sample" choice in the New Project Wizard.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800323- Improvements to the SDK Updater.
324- improvements to the AVD Manager (creation and launch dialogs)
325- new configuration selector in the Graphical Layout Editor
Raphaelc70406f2009-10-02 19:41:49 -0700326
Xavier Ducrohetc364a522009-08-25 20:01:56 -07003270.9.3:
Raphael7b9b3d12009-05-07 19:27:46 -0700328- New wizard to create Android JUnit Test Projects.
Xavier Ducrohetba7dd922009-07-22 17:39:44 -0700329- New AVD wizard.
330- SDK Updater
Xavier Ducrohetc364a522009-08-25 20:01:56 -0700331- zipalign support
Raphael7b9b3d12009-05-07 19:27:46 -0700332
Xavier Ducrohet679c1a82009-04-29 17:34:38 -07003330.9.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800334
335- Added an AVD creation wizard to ADT. It is automatically displayed
336 during a launch if no compatible AVDs are found.
337- Fixed issue with libs/ folder where files with no extension would
338 prevent the build from finishing.
339- Improved error handling during the final steps of the build to mark
340 the project if an unexpected error prevent the build from finishing.
341- Fixed issue when launching ADT on a clean install would trigger
342 org.eclipse.swt.SWTError: Not implemented [multiple displays].
343
Xavier Ducrohet679c1a82009-04-29 17:34:38 -0700344
345
3460.9.0:
Tor Norbye9f321db2011-01-10 19:45:35 -0800347
348- Projects now store generated Java files (R.java/Manifest.java and
349 output from aidl) in a 'gen' source folder.
350- Support for the new Android SDK with support for multiple versions
351 of the Android platform and for vendor supplied add-ons.
352 * New Project Wizard lets you choose which platform/add-on to
353 target.
354 * Project properties (right click project in Package Explorer,
355 then "Properties"), lets you edit project target.
356 * New Launch configuration option to choose debug deployment
357 target.
358- Ability to export multiple apk from one project, using resource
359 filters. See the 'android' property for Android projects.
360- Support for running JUnit tests on a device/emulator from a new
361 "Android JUnit tests" launch configuration.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800362
3630.8.1:
364
Tor Norbye9f321db2011-01-10 19:45:35 -0800365- Alternate Layout wizard. In the layout editor, the "create" button
366 is now enabled to easily create alternate versions of the current
367 layout.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800368- Fixed issue with custom themes/styles in the layout editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800369- Export Wizard: To export an application for release, and sign it
370 with a non debug key. Accessible from the export menu, from the
371 Android Tools contextual menu, or from the overview page of the
372 manifest editor.
373- New XML File Wizard: To easily create new XML resources file in the
374 /res directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800375- New checks on launch when attempting to debug on a device.
Tor Norbye9f321db2011-01-10 19:45:35 -0800376- Basic support for drag'n'drop in Graphical layout editor. You can
377 add new items by drag'n'drop from the palette. There is no support
378 for moving/resizing yet.
379- Undo/redo support in all XML form editors and Graphical layout
380 editor.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800381
3820.8.0:
383
Tor Norbye9f321db2011-01-10 19:45:35 -0800384- Fixed issue with using custom classes implementing Parcelable in
385 aidl files. Right click the project and choose Android Tools >
386 Create aidl preprocess file for Parcelable Classes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800387- Added Custom Themes to theme drop down in the layout editor.
388- Customizable debug signing keystore path in preferences
389- Customizable HOME package name.
390
3910.7.1:
392
393- Layout Editor.
394
3950.6.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800396- Fixed install issue when project name contains spaces (requires new
397 emulator image)
398- Fixed setup of the New class wizard in the manifest (when clicking
399 on "name" for a class attribute) in the cases where the class and
400 some of its parent packages were missing.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800401- Properly kill the application that is about to be reinstalled.
Tor Norbye9f321db2011-01-10 19:45:35 -0800402- Create missing android folder automatically when building
403 application (caused a signing error)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800404- Manifest editor: support for uses-library node
405- Fixed NPE in editors.xml.descriptors.XmlDescriptors.createPreference
406- Fixed assert in MultiEditorPart.setActivePage
Tor Norbye9f321db2011-01-10 19:45:35 -0800407- Fixed "connect to debugger" button in DeviceView. Also fixed support
408 for custom process names.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800409
4100.6.0:
411
Tor Norbye9f321db2011-01-10 19:45:35 -0800412- New launch option for activity. Can choose to launch default
413 activity (finds an activity configured to show up in the home
414 screen), or specific activity, or none.
415- Normal java resources (non java files placed in package folders) are
416 now properly packaged in the final package, and can be accessed
417 through normal java API such as ClassLoader.getResourceAsStream()
418- Launch configuration now has an option to wipe emulator data on
419 launch. This always asks for confirmation.
420- Launch configuration now has an option to disable the boot
421 animation. This will let the emulator start faster on older
422 computers.
423- Applications are now signed with a debug key (stored in
424 debug.keystore in ~/.android).
425- Installation of application is now more robust and will notify of
426 installation failure. Also installation is blocking, removing issues
427 where ADT tried to launch the activity before the app was installed.
428- Tree-based resource editor + content assist in XML editor for
429 layout, menu, preferences, values xml files. Work in progress...
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800430
431
4320.4.0 (adt 0.4.0, ddms 0.3.0, editors 0.2.0, common 0.1.0)
433
434- New AndroidManifest editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800435- True multiple device support allowing debugging apps on several
436 device at the same time
437- New launch modes for device selection: automatic will launch an
438 emulator if no device are present, automatically target the device
439 if only one exists, and prompt the user if 2+ are connected. Manual
440 mode always prompt the user.
441- New classpath container remove the dependencies on the location of
442 android.jar making it easier to share a project through dsvn, cvs,
443 etc... You should fix your project (right click project, choose
444 Android > Fix Project properties)
445- Fixed a case where pm would fail and would up end outputting the
446 "usage" text, which would in turn confuse the plugin during parsing.
447- Fixed an issue with compiling aidl file when they import project
448 local files.
449
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800450
4510.3.4 (adt 0.3.4, ddms 0.2.3, editors 0.1.0)
452
453Internal release only.
454- Enabled device support.
455
4560.3.3 (adt 0.3.3, ddms 0.2.3, editors 0.1.0)
457
458- Support for referenced projects.
Tor Norbye9f321db2011-01-10 19:45:35 -0800459- During launch, display if a package conflict occurs when the new
460 application is pushed onto the device.
461- You can now change the font of the logcat view. Also indentation is
462 now properly displayed.
463- Plugin generated files are now properly marked as derived. This will
464 make Team plugins ignore them.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800465
4660.3.2
467
468- XML Highlighting for AndroidManifest.xml (requires WebTools WST plugin)
Tor Norbye9f321db2011-01-10 19:45:35 -0800469- Custom java editor for R.java/Manifest.java to make those files non
470 editable. This is to replace the current locking mechanism which
471 causes issues on Mac OS.
472- Fixed some issue in the "Restart adb" feature in the device view of
473 ddms.
474- Better handling of aidl files and the java files generated from
475 them.
476- Plugin now retries to launch the app on the emulator if it fails due
477 to timing issues.
478- Skin dropdown in the Emulator/Target tabs is now build from the
479 content of the skin directory, to support developer made skins.
480- Emulator control panel. This is a UI on top of the emulator
481 console. it allows you to change the state of the network and gsm
482 connection, and to initiate incoming voice call.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800483
4840.3.1
485
Tor Norbye9f321db2011-01-10 19:45:35 -0800486- Fixed issue on winXP/Eclipse 3.2 where errors in the New Project
487 Wizard would not display.
488- Added missing intent definition in the AndroidManifest.xml file
489 created by the New Project Wizard.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800490- Fixed possible NPE in the debug action from the Process View
491- Support for Eclipse 3.4
492
4930.2.6 / 0.3.0
494
495- New Project Wizard now makes it easy to open Android sample code
Tor Norbye9f321db2011-01-10 19:45:35 -0800496- Plugin will output a warning if the build id of the device/emulator
497 does not match the sdk build id.
498- Java/Debug/ddms perspective now contains direct menus to open some
499 of the ddms views, and to create a new android project. This will
500 require you to reset your perspectives.
501- Error during builds now put an error marker on the project instead
502 of displaying an (annoying) dialog box.
503- Custom builders now remember their build state when restarting
504 eclipse.
505- Properly parse some aapt warnings and don't abort the build when
506 they happen.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800507- Abort launch and prompt the user if the project contains errors.
508- New silent/normal/verbose build output.
509
5100.2.5
511
Tor Norbye9f321db2011-01-10 19:45:35 -0800512- Check compiler compliance level before compilation and abort if
513 different from 1.5
514- Fix Project Properties will fix the project compiler compliance if
515 needed.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800516- Fixed an issue with multiple source folders.
Tor Norbye9f321db2011-01-10 19:45:35 -0800517- Added support for new Manifest.java class (it is automatically
518 generated with R.java if the content of the AndroidManifest.xml
519 requires it)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800520- Fixed an issue that could result in not packaging code changes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800521- Automatic fix of the Launch Configurations when the java package in
522 the manifest is changed. Also improved Launch Config dialog and
523 error alert for erroneous activity names in the Launch
524 Configuration.
525- Support for external jars that are not under the project root
526 directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800527- New projects have a default layout.
528- Misc fixes for Windows support.
529
5300.2.4
531
Tor Norbye9f321db2011-01-10 19:45:35 -0800532- Fixed large resource corruption issue.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800533
5340.2.3
535
Tor Norbye9f321db2011-01-10 19:45:35 -0800536- Fixed issue related to the integration of dx.
537- Fixed issue related to the package generation that was modified for
538 windows support.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800539
5400.2.2
541
Tor Norbye9f321db2011-01-10 19:45:35 -0800542- Changing the SDK location in the Preferences does not require to
543 restart Eclipse anymore.
544- New SDK-Project sync mode in Android preference pane. Default value
545 set to true. If true, all android projects are automatically sync'ed
546 to the SDK defined in the preferences.
547- Cases where no emulator is running but a dialog still says "An
548 emulator is running..." should be less frequent.
549- Projects do not reference the standard desktop JRE anymore, as
550 android.zip contains the core java library. This will solve the case
551 where using a core class non present on the platform would not
552 generate a compilation error.
553- Changing the package defined in the manifest now deletes the R.java
554 class from its previous location. This will require 1 build after
555 upgrading the plugin, before it works.
556- Project selection in the Launch Config Dialog now only shows Android
557 projects.
558- Launching a debug/run session now checks that the project uses the
559 SDK set in the preferences (This is for the non automatic sync
560 mode).
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800561- Removed obsolete wallpaper mode in the New Project Creation Wizard.
Tor Norbye9f321db2011-01-10 19:45:35 -0800562- dx (dalvik code conversion tool) now embedded instead of calling the
563 external version.
564- Improvements in the parsing of the aapt errors.
565- Some fixes for windows support.
566
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800567
5680.2.1
569
Tor Norbye9f321db2011-01-10 19:45:35 -0800570- Fixed bug in logcat search where invalid regexp would cause a crash
571- Minor improvements to the build/launch process.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800572
5730.2.0
574
575- Logcat view.
576- File Explorer view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800577- Custom options for emulator. In the Launch configuration dialog you
578 can specify custom command line emulator options. See
579 "emulator -help" for available options.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800580- Android Tools > Export Application Package is now implemented.
581- Misc incremental builder fixes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800582- Including static .jar files as library in your project will
583 automatically include them in the final APK. Warning: only the
584 .class content is included.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800585
5860.1.10
587
Tor Norbye9f321db2011-01-10 19:45:35 -0800588- The res and assets folders now fully refresh before the build,
589 ensuring R.java and packaged resources are always up to date. This
590 can be disabled in the preferences under "Android" if this becomes
591 slow due to too many files.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800592
5930.1.9
594
Tor Norbye9f321db2011-01-10 19:45:35 -0800595- New Action in the "Processes" view to debug an application that is
596 already running. The source project for this application MUST be
597 opened in the current workspace.
598- Building the project now force refreshes the res folder. This should
599 help rebuilding the resources when only binary files were changed
600 from outside eclipse.
601- Clean/full builds now compile all aidl files found in the build path
602 (previously only incremental builds would compile them). Also, misc
603 improvements to the incremental builders.
604- Starting a run/debug session now asks to save the files and forces a
605 new build to ensure that the latest package is pushed on the device.
606- Plugin should be less aggressive when waiting for the emulator to be
607 ready. This should translate in fewer failed launches.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800608
6090.1.8
610
611- Fixed Debugger issue introduced in 0.1.6
Tor Norbye9f321db2011-01-10 19:45:35 -0800612- Added Log level preferences for DDMS. Look under Android > DDMS >
613 Advanced. Default error level is Error.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800614
6150.1.7
616
Tor Norbye9f321db2011-01-10 19:45:35 -0800617- Fixed issue where java warnings wouldn't trigger a new package. Now
618 only errors stop the packaging like it should be.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800619- Added more error output in the console during launch.
620
6210.1.6
622
Tor Norbye9f321db2011-01-10 19:45:35 -0800623- New "Android" Console. It receives the error output from external
624 tools such and aidl, dx, and aapt (only when they can't be
625 parsed). Any error force the console to be displayed.
626- The Activity Manager on the device/emulator now outputs some
627 messages in the "Android" console when asked to start an
628 activity. This should help you figure out what is wrong if the
629 application doesn't start.
630- Fixed a case where the .apk file would be updated with broken
631 code. Now if there are java compile error, the .apk is not touched.
632- Added support for manifest with non fully qualified activity java
633 name, yet not starting with a dot.
634- Fixed creation of manifest files (through New Project wizard) to use
635 proper namespace for attributes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800636- Better error reporting for namespace issue in the manifest.
Tor Norbye9f321db2011-01-10 19:45:35 -0800637- "Reset Adb" action from the device view. Use this is the plugin
638 tells you an emulator is running when there are none.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800639- New "ddms" Console which receives the standard output of ddms.
640
6410.1.5
642
643- Support for new activity declaration inside AndroidManifest.xml
Tor Norbye9f321db2011-01-10 19:45:35 -0800644- fixed issue that prevented bin/ to be removed from the buildpath
645 when converting project.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800646
6470.1.4
648
Tor Norbye9f321db2011-01-10 19:45:35 -0800649- Changes in the Manifest, now properly trigger a new package of the
650 resources.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800651
6520.1.3
653
Tor Norbye9f321db2011-01-10 19:45:35 -0800654- Fixed the "fix project properties" action to remove old framework
655 libraries, just not add new ones.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800656
6570.1.2
658
Tor Norbye9f321db2011-01-10 19:45:35 -0800659- aidl builder. The Android Resources PreBuilder now also converts
660 aidl files into java files.
661- New Project wizard now allows to make Wallpaper activities instead
662 of gadgets (which are obsolete.)
663- Launch shortcuts. Right click in the package explorer allow you to
664 launch the application in debug or run mode directly without
665 creating launch configurations.
666- New project wizard and Project conversion now sets up the java doc
667 path for android.zip
668- Package builder now supports custom application assets placed in
669 assets/ (which is now created automatically by the New Project
670 Wizard).
671- New action: Android Tools > Fix Project Properties, in the package
672 explorer contextual menu. This allows you to fix the framework path
673 (and its javadoc path) in case you change the sdk location.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800674
6750.1.1
676
677- Fixed project convertor to add the framework library if missing.
678
6790.1.0
680
681- New project wizard.
682- Python script-generated project convertor.
683- Incremental builders.
684- XML validation for resource files.
685- Android Launch Configuration.