blob: e77eca975a1293914c28b3449cdea0a033281538 [file] [log] [blame]
Tor Norbyef0585b92011-08-19 19:00:45 -0700114.0.0 (In development)
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -08002- Build system:
Tor Norbyef0585b92011-08-19 19:00:45 -07003 - (TODO: More info) Improved library projects
4 - Improved incremental builds
5 - Resource compilation is run much less frequently. It is no
6 longer run when strings are edited, or when layouts are edited
7 (unless a new id is introduced), and it is no longer run once
8 per library project (!)
9 - Resource compilation is no longer done for normal save
10 operations, only when running or debugging (option added in ADT
11 12 now on by default.)
12 - There is a new "PNG crunch cache", which means image crunching
13 is only done once, not once per build which is significant for
14 projects with many resources
15 - Incremental ant builds
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080016 - ADT now uses bin/classes to output the java compilation
17 and bin/ for Android specific classes. This will make bin show up
18 in the package explorer.
Tor Norbyef0585b92011-08-19 19:00:45 -070019- DDMS
20 - Brand new logcat view. Fixes bugs, displays and filters by
21 application names instead of just pids, fronts when application
22 runs.
23- XML Editing
24 - New XML formatter which formats all XML files according to the
25 standard Android coding style. The formatter can also reorder
26 attributes to follow the recommended order.
27 - Improved "smart indent": automatic indentation and un-indentation
28 when pressing Return in XML editors
29 - Go to Matching (Ctrl-Shift-P) in XML files can now jump between
30 opening and closing tags
31 - Changes made by the layout editor are automatically run through
32 the new XML formatter.
33 - Select Enclosing Element should now work on the Mac as well.
34- Java Editing
35 - Quickfix for extracting Strings when the caret is inside a String
36- Layout Editor
37 - New GridLayout support
38 - Tooltip feedback for resizing and dragging operations. For
39 example, when dragging in a relative layout, the proposed
40 constraints are shown, and when resizing the new dimensions are
41 shown.
42 - New "Remove Container" visual refactoring which removes the
43 children of a container up to the top level and transfers
44 namespace and layout attributes if necessary.
45 - Improved access to properties in the context menu: The most
46 frequently set attributes for each view are listed at the top of
47 the menu, and the properties menu offers access to the most
48 recently set attributes, attributes organized by their defining
49 view, and layout attributes only or all attributes alphabetically.
50 - The context menu now also contains pull-right menus for accessing
51 properties of the parents, which is useful when the children fully
52 cover the parent making it hard to select on its own.
53 - Ability to suppress rendering fidelity warnings.
54- Asset Studio integration: Wizard creation of launcher icons, menu
55 icons, tab icons, etc.
Tor Norbye4dfe5712011-09-13 14:35:48 -070056- The New Project and the New XML File wizards have been reworked into
57 multiple pages. Sample Projects are now copied into the workspace
58 such that they can be modified and deleted without affecting the
59 master copy.
60- The dependency on Eclipse GEF was removed.
61- Many bug fixes, and in particular some critical bug fixes on Linux
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080062
Tor Norbyef0585b92011-08-19 19:00:45 -07006313.0.0
64- Tools release only (command line tools)
65
6612.0.0 (July 6th, 2011)
Tor Norbye61be14c2011-06-13 13:22:32 -070067- Many bug fixes!
68- Visual Layout Editor:
69 - New RelativeLayout drop support with guideline suggestions for
70 attachments and cycle prevention.
71 - Resize support in most layouts. In LinearLayout, sizes are mapped
72 to weights. Guideline snapping to wrap_content and match_parent.
73 - Previews of drawables and colors in the resource chooser dialogs.
74 - Improved error messages and links for rendering errors, including
75 detection of misspellings of class names.
76- Build system: Delay post compiler phase until actual export or debug
77 to speed up interactive file saves. (This is off by default but can
78 be enabled in the ADT options panel.)
Xavier Ducrohet69a82902011-06-06 16:45:50 -070079
Tor Norbyef0585b92011-08-19 19:00:45 -07008011.0.0 (June 6th, 2011)
Tor Norbye3dcfd762011-04-28 18:41:09 -070081- Visual Refactoring:
82 - The new "Extract Style" refactoring pulls out style constants and
Tor Norbyee1777152011-05-25 15:50:53 -070083 defines them as style rules instead.
Tor Norbye3dcfd762011-04-28 18:41:09 -070084 - The new "Wrap in Container" refactoring surrounds the selected
85 views with a new layout, and transfers namespace and layout
86 parameters to the new parent
87 - The new "Change Widget Type" refactoring changes the type of the
88 selected views to a new type. (Also, a new selection context menu
89 in the visual layout editor makes it easy to select siblings as
90 well as views anywhere in the layout that have the same type).
91 - The new "Change Layout" refactoring changes layouts from one type
92 to another, and can also flatten a layout hierarchy.
93 - The "Extract as Include" refactoring now finds identical fragments
94 in other layouts and offers to combine all into a single include.
95 - There is a new Refactoring Quick Assistant which can be invoked
96 from the XML editor (with Ctrl-1) to apply any of the above
97 refactorings (and Extract String) to the current selection.
98- Visual Layout Editor:
99 - Improved "rendering fidelity": The layout preview has been
100 improved and should more closely match the rendering on actual
101 devices.
102 - The visual editor now previews ListViews at designtime. By
103 default, a two-line list item is shown, but with a context menu
104 you can pick any arbitrary layout to be used for the list items,
105 and you can also pick the header and footer layouts.
106 - The palette now supports "configurations" where a single view is
107 presented in various different configurations. For example, there
108 is a whole "Textfields" palette category where the EditText view
109 can be dragged in as a password field, an e-mail field, a phone
110 field, and so on. Similarly, TextViews are offered preconfigured
111 with large, normal and small theme sizes, and LinearLayouts are
112 offered both in horizontal and vertical configurations.
113 - The palette supports custom views, picking up any custom
114 implementations of the View class in your project source folders
115 or in included libraries, and these can be dragged into layouts.
Tor Norbyefb48dde2011-05-19 13:52:31 -0700116 - Fragments support: Fragments are available in the palette, and in
117 the tool you can choose which layout to show rendered for a given
118 fragment tag. Go to declaration works for fragment classes.
Tor Norbye3dcfd762011-04-28 18:41:09 -0700119 - The layout editor automatically applies a "zoom to fit" for newly
120 opened files as well as on device size and orientation changes to
121 ensure that large layouts are always fully visible unless you
122 manually zoom in.
123 - You can drop an "include" tag from the palette, which will pop up
124 a layout chooser, and the chosen layout is added as an include.
125 Similarly, dropping images or image buttons will pop up image
126 resource choosers to initialize the new image with.
127 - The configuration chooser now applies the "Render Target" and
128 "Locale" settings project wide, making it trivial to check the
129 layouts for different languages or render targets without having
130 to configure these individually for each layout.
131 - The layout editor is smarter about picking a default theme to
132 render a layout with, consulting factors like theme registrations
133 in the manifest, the SDK version, etc.
Tor Norbyefb48dde2011-05-19 13:52:31 -0700134 - The layout editor is also smarter about picking a default
135 configuration to render a layout with, defaulting to the currently
136 visible configuration in the previous file. It also considers the
137 SDK target to determine whether to default to a tablet or phone
138 screen size.
139 - Basic focus support: The first text field dropped in a layout is
140 assigned focus, and there are "Request Focus" and "Clear Focus"
141 context menu items on text fields to change the focus.
Tor Norbye3dcfd762011-04-28 18:41:09 -0700142- XML editors:
143 - Code completion has been significantly improved. It now works
144 within <style> elements, it completes dimensional units,
145 it sorts resource paths in values based on the attribute name,
146 etc. There are also many fixes to handle text replacement.
147 - AAPT errors are handled better. They are now underlined for the
148 relevant range in the editor, and a new quickfix makes it trivial
149 to create missing resources.
150 - Code completion for drawable, animation and color XML files.
151- DDMS:
152 - "New Folder" action in the File Explorer
153 - The screenshot dialog will add timestamps to the filenames, and
154 preserve the orientation on snapshot refresh
155- TraceView: Mouse-wheel zoom support in the timeline
156- The New Android Project wizard now supports Eclipse working sets
157- Most of the tools have improved integration with the Mac OSX
158 system menu bar.
159- Most of the tools have new launcher icons.
160
Tor Norbyef0585b92011-08-19 19:00:45 -070016110.0.1 (March, 2011)
Tor Norbye3301b682011-04-05 08:59:12 -0700162- Temporary work-around to resolve the rare cases in which the layout
163 editor will not open.
164- Fix issue in which ADT 10.0.0 would install on Eclipse 3.4 and
165 lower, even though ADT requires Eclipse 3.5 or higher (as of
166 10.0.0).
167
Tor Norbyef0585b92011-08-19 19:00:45 -070016810.0.0 (February 22nd, 2011)
Tor Norbye3301b682011-04-05 08:59:12 -0700169- The tools now automatically generate Java Programming Language
170 source files (in the gen/ directory) and bytecode (in the res/raw/
171 directory) from your .rs files.
172- A Binary XML editor has been added.
173- Traceview is now integrated into the Eclipse UI.
174- The "Go To Declaration" feature for XML and .java files quickly show
175 all the matches in the project and allows you jump to specific items
176 such as string translations or onClick handlers.
177- The Resource Chooser can create items such as dimensions, integers,
178 ids, and booleans.
179- Improvements to the Visual Layout Editor:
180 - A new Palette with categories and rendering previews.
181 - A Layout Actions bar that provides quick access to common layout
182 operations.
183 - When the Android 3.0 rendering library is selected, layouts render
184 more like they do on devices. This includes rendering of status
185 and title bars to more accurately reflect the actual screen space
186 available to applications.
187 - Zoom improvements such as fit to view, persistent scale, and
188 keyboard access..
189 - Further improvements to <merge> layouts, as well as layouts with
190 gesture overlays.
191 - Improved rendering error diagnostics.
192
Tor Norbyef0585b92011-08-19 19:00:45 -07001939.0.0 (January 26, 2011)
Xavier Ducrohet484e7f32010-11-17 15:17:59 -0800194- Visual Layout Editor
Tor Norbye9f321db2011-01-10 19:45:35 -0800195 - Empty layouts with 0,0 size are now automatically expanded when
196 selected and during drag and drop
197 - Rendering target can now be changed from the default (project
198 target)
199 - When choosing resources for rendering, the API level is properly
200 handled
Tor Norbyee14b92a2011-01-10 19:20:45 -0800201 - Improved support for rendering <include> and <merge> views
Tor Norbye9f321db2011-01-10 19:45:35 -0800202 - "Extract as Include" refactoring to extract selected views into
203 a separate included layout.
204 - String and reference properties can be edited from the layout
205 editor's context menu
206 - Rewritten outline drag & drop handling, improved label colors
207 and content
208 - The generated XML will be better formatted. Full XML formatter
209 can be enabled in the preferences (under Android > Editors), but
210 will touch part of the XML that isn't modified.
211 - Automatic configuration of many widgets on drop, such as
212 automatically filling a TextView in a vertical LinearLayout,
213 adding rows to new tables, etc.
214 - Double click views to jump to the corresponding XML declaration,
215 or for included views, to the included layout file
Tor Norbye6f147bd2011-01-17 22:25:54 -0800216 - Improved support for various views (such as TabHosts and
217 SlidingDrawers) when rendered using Honeycomb
Tor Norbye9f321db2011-01-10 19:45:35 -0800218- Go to Declaration hyperlinks for navigating from @resource
219 references to their XML declarations, from the manifest file to
220 activity and service classes, from Java access of resource R fields
221 to the XML declarations, etc.
Xavier Ducrohet5e9522e2011-01-06 18:02:13 -0800222- Logcat view in DDMS now properly displays UTF-8 characters.
223
Tor Norbyef0585b92011-08-19 19:00:45 -07002248.0.1 (October 2010)
Tor Norbye9f321db2011-01-10 19:45:35 -0800225- Fix compilation issue in Android projects referencing standard Java
226 projects.
Xavier Ducrohet3e7d21a2010-12-07 12:16:53 -0800227- Better error reporting when exporting applications for release.
228
Tor Norbyef0585b92011-08-19 19:00:45 -07002298.0.0 (October 2010)
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700230- New version number scheme following the SDK Tools revision number.
Tor Norbye9f321db2011-01-10 19:45:35 -0800231- Support for true debug build. No need to change the value of
232 debuggable in the Android Manifest. Incremental build will
233 automatically insert debuggable==true while using the "export
234 signed/unsigned application package" will not. If debuggable=true
235 is set, then release builds will actually do a debug build.
236- Automatic Proguard support in release builds. Only need to have a
237 proguard.config property in default.properties that points to a
238 proguard config file.
239- Completely rewritten Visual Layout Editor. This is very much a work
240 in progress.
241 - full drag and drop from palette to layout for all Layout
242 classes.
243 - Move widgets inside a Layout view, from one Layout view to
244 another and from one layout file to another.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -0700245 - Contextual menu with enum/flag type properties.
246 - New zoom controls.
247- New HierarchyViewer plug-in integrated in Eclipse.
Tor Norbye9f321db2011-01-10 19:45:35 -0800248- Android launch configurations don't recompile the whole workspace on
249 launch anymore.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -0700250- android.jar source and javadoc location can now be configured.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700251
Xavier Ducrohet6f43b412010-09-24 07:19:37 -07002520.9.9:
Tor Norbye9f321db2011-01-10 19:45:35 -0800253- Fix bug where ADT would delete the source folder of projects
254 imported from version control.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700255
Xavier Ducrohet6d092a42010-06-09 11:23:57 -07002560.9.8:
Tor Norbye9f321db2011-01-10 19:45:35 -0800257- New Action "Rename Application Package" (under the "Android Tools"
258 contextual menu) will do a full application package refatoring.
259- Fixed issue with library project names containing characters that
260 aren't compatible with Eclipse path variable. The link between the
261 main project and the library would fail to create.
262- Added support for library projects that don't have a source folder
263 called "src". There is now support for any number of source folder,
264 with no name restriction. They can even be in sub folder such as
265 "src/java".
Xavier Ducrohetb4e47552010-07-01 18:01:43 -0700266- Added support for libraries with library dependencies.
Tor Norbye9f321db2011-01-10 19:45:35 -0800267- added support for new resource qualifiers: car/desk, night/notnight
268 and navexposed/navhidden
269- Added more device screen types for the layout editor. All screen
270 resolution/density combinations from
271 http://developer.android.com/guide/practices/screens_support.html#range
272 is now available.
Xavier Ducrohet6d092a42010-06-09 11:23:57 -0700273
Xavier Ducroheteee4bf12010-03-17 11:47:43 -07002740.9.7:
275- Support for library projects
Tor Norbye9f321db2011-01-10 19:45:35 -0800276- Updated Property panel for Android project to edit library
277 dependencies.
Xavier Ducroheteee4bf12010-03-17 11:47:43 -0700278
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -08002790.9.6:
Tor Norbye9f321db2011-01-10 19:45:35 -0800280- Editing default.properties outside of eclipse will automatically
281 update the project
282- Fix issue when launching ADT the first time with the SDK Usage panel
283 that could create a deadlock between modal dialogs
284- Launched applications from ADT now behave as if they were clicked
285 from the Home screen of the emulator.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800286- AVD creation dialog now enforce sd card of 9MB or higher
Tor Norbye9f321db2011-01-10 19:45:35 -0800287- Fixed issue where add-on with no optional library would not show up
288 as valid targets for application launches.
289- Loads the SDK content only when a project requires it. This will
290 make Eclipse use less resources when the SDK contains many versions
291 of Android.
Xavier Ducrohet244d1812009-12-08 16:05:19 -0800292- DDMS plug-in now contains the Allocation Tracker view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800293- Lots of fixes in the configuration selector of the Visual Layout
294 Editor.
295- Explode mode in the Visual Layout Editor adds a margin to all layout
296 objects so that it's easier to see embedded layouts
297- Outline mode in the Visual Layout Editor draws layout outline to
298 make it easier to see layout objects.
Xavier Ducrohete83bdbb2010-01-25 16:36:29 -0800299- Fixed issues with the New Project Wizard when selecting samples.
300- Fixed possible crash when launching applications
Tor Norbye9f321db2011-01-10 19:45:35 -0800301- New action in the Logcat view: "Go to problem" lets you go directly
302 from an exception trace output to the code.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800303
3040.9.5:
Tor Norbye9f321db2011-01-10 19:45:35 -0800305- Misc fixes in the SDK Updater
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800306
Raphaelc70406f2009-10-02 19:41:49 -07003070.9.4:
308- New "Create project from sample" choice in the New Project Wizard.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800309- Improvements to the SDK Updater.
310- improvements to the AVD Manager (creation and launch dialogs)
311- new configuration selector in the Graphical Layout Editor
Raphaelc70406f2009-10-02 19:41:49 -0700312
Xavier Ducrohetc364a522009-08-25 20:01:56 -07003130.9.3:
Raphael7b9b3d12009-05-07 19:27:46 -0700314- New wizard to create Android JUnit Test Projects.
Xavier Ducrohetba7dd922009-07-22 17:39:44 -0700315- New AVD wizard.
316- SDK Updater
Xavier Ducrohetc364a522009-08-25 20:01:56 -0700317- zipalign support
Raphael7b9b3d12009-05-07 19:27:46 -0700318
Xavier Ducrohet679c1a82009-04-29 17:34:38 -07003190.9.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800320
321- Added an AVD creation wizard to ADT. It is automatically displayed
322 during a launch if no compatible AVDs are found.
323- Fixed issue with libs/ folder where files with no extension would
324 prevent the build from finishing.
325- Improved error handling during the final steps of the build to mark
326 the project if an unexpected error prevent the build from finishing.
327- Fixed issue when launching ADT on a clean install would trigger
328 org.eclipse.swt.SWTError: Not implemented [multiple displays].
329
Xavier Ducrohet679c1a82009-04-29 17:34:38 -0700330
331
3320.9.0:
Tor Norbye9f321db2011-01-10 19:45:35 -0800333
334- Projects now store generated Java files (R.java/Manifest.java and
335 output from aidl) in a 'gen' source folder.
336- Support for the new Android SDK with support for multiple versions
337 of the Android platform and for vendor supplied add-ons.
338 * New Project Wizard lets you choose which platform/add-on to
339 target.
340 * Project properties (right click project in Package Explorer,
341 then "Properties"), lets you edit project target.
342 * New Launch configuration option to choose debug deployment
343 target.
344- Ability to export multiple apk from one project, using resource
345 filters. See the 'android' property for Android projects.
346- Support for running JUnit tests on a device/emulator from a new
347 "Android JUnit tests" launch configuration.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800348
3490.8.1:
350
Tor Norbye9f321db2011-01-10 19:45:35 -0800351- Alternate Layout wizard. In the layout editor, the "create" button
352 is now enabled to easily create alternate versions of the current
353 layout.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800354- Fixed issue with custom themes/styles in the layout editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800355- Export Wizard: To export an application for release, and sign it
356 with a non debug key. Accessible from the export menu, from the
357 Android Tools contextual menu, or from the overview page of the
358 manifest editor.
359- New XML File Wizard: To easily create new XML resources file in the
360 /res directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800361- New checks on launch when attempting to debug on a device.
Tor Norbye9f321db2011-01-10 19:45:35 -0800362- Basic support for drag'n'drop in Graphical layout editor. You can
363 add new items by drag'n'drop from the palette. There is no support
364 for moving/resizing yet.
365- Undo/redo support in all XML form editors and Graphical layout
366 editor.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800367
3680.8.0:
369
Tor Norbye9f321db2011-01-10 19:45:35 -0800370- Fixed issue with using custom classes implementing Parcelable in
371 aidl files. Right click the project and choose Android Tools >
372 Create aidl preprocess file for Parcelable Classes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800373- Added Custom Themes to theme drop down in the layout editor.
374- Customizable debug signing keystore path in preferences
375- Customizable HOME package name.
376
3770.7.1:
378
379- Layout Editor.
380
3810.6.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800382- Fixed install issue when project name contains spaces (requires new
383 emulator image)
384- Fixed setup of the New class wizard in the manifest (when clicking
385 on "name" for a class attribute) in the cases where the class and
386 some of its parent packages were missing.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800387- Properly kill the application that is about to be reinstalled.
Tor Norbye9f321db2011-01-10 19:45:35 -0800388- Create missing android folder automatically when building
389 application (caused a signing error)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800390- Manifest editor: support for uses-library node
391- Fixed NPE in editors.xml.descriptors.XmlDescriptors.createPreference
392- Fixed assert in MultiEditorPart.setActivePage
Tor Norbye9f321db2011-01-10 19:45:35 -0800393- Fixed "connect to debugger" button in DeviceView. Also fixed support
394 for custom process names.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800395
3960.6.0:
397
Tor Norbye9f321db2011-01-10 19:45:35 -0800398- New launch option for activity. Can choose to launch default
399 activity (finds an activity configured to show up in the home
400 screen), or specific activity, or none.
401- Normal java resources (non java files placed in package folders) are
402 now properly packaged in the final package, and can be accessed
403 through normal java API such as ClassLoader.getResourceAsStream()
404- Launch configuration now has an option to wipe emulator data on
405 launch. This always asks for confirmation.
406- Launch configuration now has an option to disable the boot
407 animation. This will let the emulator start faster on older
408 computers.
409- Applications are now signed with a debug key (stored in
410 debug.keystore in ~/.android).
411- Installation of application is now more robust and will notify of
412 installation failure. Also installation is blocking, removing issues
413 where ADT tried to launch the activity before the app was installed.
414- Tree-based resource editor + content assist in XML editor for
415 layout, menu, preferences, values xml files. Work in progress...
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800416
417
4180.4.0 (adt 0.4.0, ddms 0.3.0, editors 0.2.0, common 0.1.0)
419
420- New AndroidManifest editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800421- True multiple device support allowing debugging apps on several
422 device at the same time
423- New launch modes for device selection: automatic will launch an
424 emulator if no device are present, automatically target the device
425 if only one exists, and prompt the user if 2+ are connected. Manual
426 mode always prompt the user.
427- New classpath container remove the dependencies on the location of
428 android.jar making it easier to share a project through dsvn, cvs,
429 etc... You should fix your project (right click project, choose
430 Android > Fix Project properties)
431- Fixed a case where pm would fail and would up end outputting the
432 "usage" text, which would in turn confuse the plugin during parsing.
433- Fixed an issue with compiling aidl file when they import project
434 local files.
435
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800436
4370.3.4 (adt 0.3.4, ddms 0.2.3, editors 0.1.0)
438
439Internal release only.
440- Enabled device support.
441
4420.3.3 (adt 0.3.3, ddms 0.2.3, editors 0.1.0)
443
444- Support for referenced projects.
Tor Norbye9f321db2011-01-10 19:45:35 -0800445- During launch, display if a package conflict occurs when the new
446 application is pushed onto the device.
447- You can now change the font of the logcat view. Also indentation is
448 now properly displayed.
449- Plugin generated files are now properly marked as derived. This will
450 make Team plugins ignore them.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800451
4520.3.2
453
454- XML Highlighting for AndroidManifest.xml (requires WebTools WST plugin)
Tor Norbye9f321db2011-01-10 19:45:35 -0800455- Custom java editor for R.java/Manifest.java to make those files non
456 editable. This is to replace the current locking mechanism which
457 causes issues on Mac OS.
458- Fixed some issue in the "Restart adb" feature in the device view of
459 ddms.
460- Better handling of aidl files and the java files generated from
461 them.
462- Plugin now retries to launch the app on the emulator if it fails due
463 to timing issues.
464- Skin dropdown in the Emulator/Target tabs is now build from the
465 content of the skin directory, to support developer made skins.
466- Emulator control panel. This is a UI on top of the emulator
467 console. it allows you to change the state of the network and gsm
468 connection, and to initiate incoming voice call.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800469
4700.3.1
471
Tor Norbye9f321db2011-01-10 19:45:35 -0800472- Fixed issue on winXP/Eclipse 3.2 where errors in the New Project
473 Wizard would not display.
474- Added missing intent definition in the AndroidManifest.xml file
475 created by the New Project Wizard.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800476- Fixed possible NPE in the debug action from the Process View
477- Support for Eclipse 3.4
478
4790.2.6 / 0.3.0
480
481- New Project Wizard now makes it easy to open Android sample code
Tor Norbye9f321db2011-01-10 19:45:35 -0800482- Plugin will output a warning if the build id of the device/emulator
483 does not match the sdk build id.
484- Java/Debug/ddms perspective now contains direct menus to open some
485 of the ddms views, and to create a new android project. This will
486 require you to reset your perspectives.
487- Error during builds now put an error marker on the project instead
488 of displaying an (annoying) dialog box.
489- Custom builders now remember their build state when restarting
490 eclipse.
491- Properly parse some aapt warnings and don't abort the build when
492 they happen.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800493- Abort launch and prompt the user if the project contains errors.
494- New silent/normal/verbose build output.
495
4960.2.5
497
Tor Norbye9f321db2011-01-10 19:45:35 -0800498- Check compiler compliance level before compilation and abort if
499 different from 1.5
500- Fix Project Properties will fix the project compiler compliance if
501 needed.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800502- Fixed an issue with multiple source folders.
Tor Norbye9f321db2011-01-10 19:45:35 -0800503- Added support for new Manifest.java class (it is automatically
504 generated with R.java if the content of the AndroidManifest.xml
505 requires it)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800506- Fixed an issue that could result in not packaging code changes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800507- Automatic fix of the Launch Configurations when the java package in
508 the manifest is changed. Also improved Launch Config dialog and
509 error alert for erroneous activity names in the Launch
510 Configuration.
511- Support for external jars that are not under the project root
512 directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800513- New projects have a default layout.
514- Misc fixes for Windows support.
515
5160.2.4
517
Tor Norbye9f321db2011-01-10 19:45:35 -0800518- Fixed large resource corruption issue.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800519
5200.2.3
521
Tor Norbye9f321db2011-01-10 19:45:35 -0800522- Fixed issue related to the integration of dx.
523- Fixed issue related to the package generation that was modified for
524 windows support.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800525
5260.2.2
527
Tor Norbye9f321db2011-01-10 19:45:35 -0800528- Changing the SDK location in the Preferences does not require to
529 restart Eclipse anymore.
530- New SDK-Project sync mode in Android preference pane. Default value
531 set to true. If true, all android projects are automatically sync'ed
532 to the SDK defined in the preferences.
533- Cases where no emulator is running but a dialog still says "An
534 emulator is running..." should be less frequent.
535- Projects do not reference the standard desktop JRE anymore, as
536 android.zip contains the core java library. This will solve the case
537 where using a core class non present on the platform would not
538 generate a compilation error.
539- Changing the package defined in the manifest now deletes the R.java
540 class from its previous location. This will require 1 build after
541 upgrading the plugin, before it works.
542- Project selection in the Launch Config Dialog now only shows Android
543 projects.
544- Launching a debug/run session now checks that the project uses the
545 SDK set in the preferences (This is for the non automatic sync
546 mode).
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800547- Removed obsolete wallpaper mode in the New Project Creation Wizard.
Tor Norbye9f321db2011-01-10 19:45:35 -0800548- dx (dalvik code conversion tool) now embedded instead of calling the
549 external version.
550- Improvements in the parsing of the aapt errors.
551- Some fixes for windows support.
552
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800553
5540.2.1
555
Tor Norbye9f321db2011-01-10 19:45:35 -0800556- Fixed bug in logcat search where invalid regexp would cause a crash
557- Minor improvements to the build/launch process.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800558
5590.2.0
560
561- Logcat view.
562- File Explorer view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800563- Custom options for emulator. In the Launch configuration dialog you
564 can specify custom command line emulator options. See
565 "emulator -help" for available options.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800566- Android Tools > Export Application Package is now implemented.
567- Misc incremental builder fixes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800568- Including static .jar files as library in your project will
569 automatically include them in the final APK. Warning: only the
570 .class content is included.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800571
5720.1.10
573
Tor Norbye9f321db2011-01-10 19:45:35 -0800574- The res and assets folders now fully refresh before the build,
575 ensuring R.java and packaged resources are always up to date. This
576 can be disabled in the preferences under "Android" if this becomes
577 slow due to too many files.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800578
5790.1.9
580
Tor Norbye9f321db2011-01-10 19:45:35 -0800581- New Action in the "Processes" view to debug an application that is
582 already running. The source project for this application MUST be
583 opened in the current workspace.
584- Building the project now force refreshes the res folder. This should
585 help rebuilding the resources when only binary files were changed
586 from outside eclipse.
587- Clean/full builds now compile all aidl files found in the build path
588 (previously only incremental builds would compile them). Also, misc
589 improvements to the incremental builders.
590- Starting a run/debug session now asks to save the files and forces a
591 new build to ensure that the latest package is pushed on the device.
592- Plugin should be less aggressive when waiting for the emulator to be
593 ready. This should translate in fewer failed launches.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800594
5950.1.8
596
597- Fixed Debugger issue introduced in 0.1.6
Tor Norbye9f321db2011-01-10 19:45:35 -0800598- Added Log level preferences for DDMS. Look under Android > DDMS >
599 Advanced. Default error level is Error.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800600
6010.1.7
602
Tor Norbye9f321db2011-01-10 19:45:35 -0800603- Fixed issue where java warnings wouldn't trigger a new package. Now
604 only errors stop the packaging like it should be.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800605- Added more error output in the console during launch.
606
6070.1.6
608
Tor Norbye9f321db2011-01-10 19:45:35 -0800609- New "Android" Console. It receives the error output from external
610 tools such and aidl, dx, and aapt (only when they can't be
611 parsed). Any error force the console to be displayed.
612- The Activity Manager on the device/emulator now outputs some
613 messages in the "Android" console when asked to start an
614 activity. This should help you figure out what is wrong if the
615 application doesn't start.
616- Fixed a case where the .apk file would be updated with broken
617 code. Now if there are java compile error, the .apk is not touched.
618- Added support for manifest with non fully qualified activity java
619 name, yet not starting with a dot.
620- Fixed creation of manifest files (through New Project wizard) to use
621 proper namespace for attributes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800622- Better error reporting for namespace issue in the manifest.
Tor Norbye9f321db2011-01-10 19:45:35 -0800623- "Reset Adb" action from the device view. Use this is the plugin
624 tells you an emulator is running when there are none.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800625- New "ddms" Console which receives the standard output of ddms.
626
6270.1.5
628
629- Support for new activity declaration inside AndroidManifest.xml
Tor Norbye9f321db2011-01-10 19:45:35 -0800630- fixed issue that prevented bin/ to be removed from the buildpath
631 when converting project.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800632
6330.1.4
634
Tor Norbye9f321db2011-01-10 19:45:35 -0800635- Changes in the Manifest, now properly trigger a new package of the
636 resources.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800637
6380.1.3
639
Tor Norbye9f321db2011-01-10 19:45:35 -0800640- Fixed the "fix project properties" action to remove old framework
641 libraries, just not add new ones.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800642
6430.1.2
644
Tor Norbye9f321db2011-01-10 19:45:35 -0800645- aidl builder. The Android Resources PreBuilder now also converts
646 aidl files into java files.
647- New Project wizard now allows to make Wallpaper activities instead
648 of gadgets (which are obsolete.)
649- Launch shortcuts. Right click in the package explorer allow you to
650 launch the application in debug or run mode directly without
651 creating launch configurations.
652- New project wizard and Project conversion now sets up the java doc
653 path for android.zip
654- Package builder now supports custom application assets placed in
655 assets/ (which is now created automatically by the New Project
656 Wizard).
657- New action: Android Tools > Fix Project Properties, in the package
658 explorer contextual menu. This allows you to fix the framework path
659 (and its javadoc path) in case you change the sdk location.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800660
6610.1.1
662
663- Fixed project convertor to add the framework library if missing.
664
6650.1.0
666
667- New project wizard.
668- Python script-generated project convertor.
669- Incremental builders.
670- XML validation for resource files.
671- Android Launch Configuration.