| Tor Norbye | 310538c | 2012-01-13 08:56:18 -0800 | [diff] [blame] | 1 | 17.0.0: |
| 2 | * ADT 17 requires Java 6 and Eclipse 3.6.2. |
| 3 | * Improved Lint UI. |
| 4 | * Many new lint checks: See the tools changes.txt for details. |
| 5 | * New "Run Lint" toolbar action with a dropdown menu for selecting |
| 6 | specific (or all) projects, clearing results, etc. |
| 7 | * The results window is now organized as a tree rather than a flat |
| 8 | list. Each issue type has a single top level item, which makes it |
| 9 | easier to quickly scan through the reported issues and narrow |
| 10 | down to issues you are most interested in. |
| 11 | * The results window contains many new toolbar actions, including |
| 12 | expand/collapse, ignore in file, ignore in project, ignore |
| 13 | everywhere, show options, and configure columns. |
| 14 | * There are new columns available, such as category, priority, |
| 15 | project, file and line. The column selection (as well as the |
| 16 | column sizes) are persisted. You can click on columns to sort by |
| 17 | that column. |
| 18 | * The Lint Options dialog has Enable All and Disable All buttons, |
| 19 | and a search filter textbox to filter by issue id, summary and |
| 20 | severity. |
| 21 | * New Quick Outline for XML editors (Ctrl-O, Command-O). This shows |
| 22 | the structure of the current file including icons and ids, and lets |
| 23 | you filter and quickly jump to specific ids. |
| 24 | * The resource chooser now shows the resolved value for resources |
| 25 | (e.g. when selecting @string/hello it displays that the resolved value |
| 26 | is "Hello World"). It also allows editing the chosen value directly. |
| 27 | * The layout editor no longer assigns default ids to layouts, includes |
| 28 | and merge tags. This tended to pollute the namespace with a lot of |
| 29 | unused resources since layouts aren't usually manipulated via code, |
| 30 | or referenced from XML. (The RelativeLayout editor automatically |
| 31 | assigns ids to views without ids when pointing to them.) |
| Tor Norbye | 5ae5ceb | 2012-02-15 12:39:14 -0800 | [diff] [blame] | 32 | * Export Screenshot from the Layout Editor |
| Tor Norbye | 310538c | 2012-01-13 08:56:18 -0800 | [diff] [blame] | 33 | * Layout editor fix for SlidingDrawer which on some platforms could |
| 34 | not be dragged into the layout. Also fix preview rendering for |
| 35 | SlidingDrawer and TabHost (issue 23022). |
| 36 | * New default application icons, including an xhdpi version. |
| 37 | * Important bug fixes: |
| 38 | * Fix bug in resource chooser which made some types of framework |
| 39 | resources impossible to select (issue 20589) |
| 40 | * Fix a bug in the formatter where a certain whitespace pattern |
| 41 | could result in a non-space character getting deleted (issue |
| 42 | 23940) |
| 43 | * Fix locale bug affecting Turkish locales in particular (issue |
| 44 | 23747) |
| 45 | |
| Tor Norbye | a79073e | 2011-10-20 18:33:24 -0700 | [diff] [blame] | 46 | 16.0.0: |
| 47 | * New "lint" feature which scans the Android projects for potential |
| 48 | problems such as missing translations, duplicate ids between layouts |
| 49 | that include each other, using px instead of dp units, hardcoded |
| 50 | strings, missing contentDescriptions, obsolete Proguard |
| 51 | configuration files, etc. Lint can be run on the command line, but |
| 52 | it is also integrated into the Problems view in Eclipse, and there |
| 53 | are also quickfixes available for many of the reported errors. |
| 54 | |
| 55 | 15.0.0 |
| 56 | Critical bug fixes only. |
| 57 | |
| 58 | 14.0.0 |
| Xavier Ducrohet | babf25c | 2011-02-14 15:52:12 -0800 | [diff] [blame] | 59 | - Build system: |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 60 | - (TODO: More info) Improved library projects |
| 61 | - Improved incremental builds |
| 62 | - Resource compilation is run much less frequently. It is no |
| 63 | longer run when strings are edited, or when layouts are edited |
| 64 | (unless a new id is introduced), and it is no longer run once |
| 65 | per library project (!) |
| 66 | - Resource compilation is no longer done for normal save |
| 67 | operations, only when running or debugging (option added in ADT |
| 68 | 12 now on by default.) |
| 69 | - There is a new "PNG crunch cache", which means image crunching |
| 70 | is only done once, not once per build which is significant for |
| 71 | projects with many resources |
| 72 | - Incremental ant builds |
| Xavier Ducrohet | babf25c | 2011-02-14 15:52:12 -0800 | [diff] [blame] | 73 | - ADT now uses bin/classes to output the java compilation |
| 74 | and bin/ for Android specific classes. This will make bin show up |
| 75 | in the package explorer. |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 76 | - DDMS |
| 77 | - Brand new logcat view. Fixes bugs, displays and filters by |
| 78 | application names instead of just pids, fronts when application |
| 79 | runs. |
| 80 | - XML Editing |
| 81 | - New XML formatter which formats all XML files according to the |
| 82 | standard Android coding style. The formatter can also reorder |
| 83 | attributes to follow the recommended order. |
| 84 | - Improved "smart indent": automatic indentation and un-indentation |
| 85 | when pressing Return in XML editors |
| 86 | - Go to Matching (Ctrl-Shift-P) in XML files can now jump between |
| 87 | opening and closing tags |
| 88 | - Changes made by the layout editor are automatically run through |
| 89 | the new XML formatter. |
| 90 | - Select Enclosing Element should now work on the Mac as well. |
| 91 | - Java Editing |
| 92 | - Quickfix for extracting Strings when the caret is inside a String |
| 93 | - Layout Editor |
| 94 | - New GridLayout support |
| 95 | - Tooltip feedback for resizing and dragging operations. For |
| 96 | example, when dragging in a relative layout, the proposed |
| 97 | constraints are shown, and when resizing the new dimensions are |
| 98 | shown. |
| 99 | - New "Remove Container" visual refactoring which removes the |
| 100 | children of a container up to the top level and transfers |
| 101 | namespace and layout attributes if necessary. |
| 102 | - Improved access to properties in the context menu: The most |
| 103 | frequently set attributes for each view are listed at the top of |
| 104 | the menu, and the properties menu offers access to the most |
| 105 | recently set attributes, attributes organized by their defining |
| 106 | view, and layout attributes only or all attributes alphabetically. |
| 107 | - The context menu now also contains pull-right menus for accessing |
| 108 | properties of the parents, which is useful when the children fully |
| 109 | cover the parent making it hard to select on its own. |
| 110 | - Ability to suppress rendering fidelity warnings. |
| 111 | - Asset Studio integration: Wizard creation of launcher icons, menu |
| 112 | icons, tab icons, etc. |
| Tor Norbye | e92f816 | 2011-09-27 08:59:15 -0700 | [diff] [blame] | 113 | - New Welcome Wizard to help installing and configuring the SDK |
| 114 | platforms. |
| Tor Norbye | 4dfe571 | 2011-09-13 14:35:48 -0700 | [diff] [blame] | 115 | - The New Project and the New XML File wizards have been reworked into |
| 116 | multiple pages. Sample Projects are now copied into the workspace |
| 117 | such that they can be modified and deleted without affecting the |
| 118 | master copy. |
| 119 | - The dependency on Eclipse GEF was removed. |
| 120 | - Many bug fixes, and in particular some critical bug fixes on Linux |
| Xavier Ducrohet | babf25c | 2011-02-14 15:52:12 -0800 | [diff] [blame] | 121 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 122 | 13.0.0 |
| 123 | - Tools release only (command line tools) |
| 124 | |
| 125 | 12.0.0 (July 6th, 2011) |
| Tor Norbye | 61be14c | 2011-06-13 13:22:32 -0700 | [diff] [blame] | 126 | - Many bug fixes! |
| 127 | - Visual Layout Editor: |
| 128 | - New RelativeLayout drop support with guideline suggestions for |
| 129 | attachments and cycle prevention. |
| 130 | - Resize support in most layouts. In LinearLayout, sizes are mapped |
| 131 | to weights. Guideline snapping to wrap_content and match_parent. |
| 132 | - Previews of drawables and colors in the resource chooser dialogs. |
| 133 | - Improved error messages and links for rendering errors, including |
| 134 | detection of misspellings of class names. |
| 135 | - Build system: Delay post compiler phase until actual export or debug |
| 136 | to speed up interactive file saves. (This is off by default but can |
| 137 | be enabled in the ADT options panel.) |
| Xavier Ducrohet | 69a8290 | 2011-06-06 16:45:50 -0700 | [diff] [blame] | 138 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 139 | 11.0.0 (June 6th, 2011) |
| Tor Norbye | 3dcfd76 | 2011-04-28 18:41:09 -0700 | [diff] [blame] | 140 | - Visual Refactoring: |
| 141 | - The new "Extract Style" refactoring pulls out style constants and |
| Tor Norbye | e177715 | 2011-05-25 15:50:53 -0700 | [diff] [blame] | 142 | defines them as style rules instead. |
| Tor Norbye | 3dcfd76 | 2011-04-28 18:41:09 -0700 | [diff] [blame] | 143 | - The new "Wrap in Container" refactoring surrounds the selected |
| 144 | views with a new layout, and transfers namespace and layout |
| 145 | parameters to the new parent |
| 146 | - The new "Change Widget Type" refactoring changes the type of the |
| 147 | selected views to a new type. (Also, a new selection context menu |
| 148 | in the visual layout editor makes it easy to select siblings as |
| 149 | well as views anywhere in the layout that have the same type). |
| 150 | - The new "Change Layout" refactoring changes layouts from one type |
| 151 | to another, and can also flatten a layout hierarchy. |
| 152 | - The "Extract as Include" refactoring now finds identical fragments |
| 153 | in other layouts and offers to combine all into a single include. |
| 154 | - There is a new Refactoring Quick Assistant which can be invoked |
| 155 | from the XML editor (with Ctrl-1) to apply any of the above |
| 156 | refactorings (and Extract String) to the current selection. |
| 157 | - Visual Layout Editor: |
| 158 | - Improved "rendering fidelity": The layout preview has been |
| 159 | improved and should more closely match the rendering on actual |
| 160 | devices. |
| 161 | - The visual editor now previews ListViews at designtime. By |
| 162 | default, a two-line list item is shown, but with a context menu |
| 163 | you can pick any arbitrary layout to be used for the list items, |
| 164 | and you can also pick the header and footer layouts. |
| 165 | - The palette now supports "configurations" where a single view is |
| 166 | presented in various different configurations. For example, there |
| 167 | is a whole "Textfields" palette category where the EditText view |
| 168 | can be dragged in as a password field, an e-mail field, a phone |
| 169 | field, and so on. Similarly, TextViews are offered preconfigured |
| 170 | with large, normal and small theme sizes, and LinearLayouts are |
| 171 | offered both in horizontal and vertical configurations. |
| 172 | - The palette supports custom views, picking up any custom |
| 173 | implementations of the View class in your project source folders |
| 174 | or in included libraries, and these can be dragged into layouts. |
| Tor Norbye | fb48dde | 2011-05-19 13:52:31 -0700 | [diff] [blame] | 175 | - Fragments support: Fragments are available in the palette, and in |
| 176 | the tool you can choose which layout to show rendered for a given |
| 177 | fragment tag. Go to declaration works for fragment classes. |
| Tor Norbye | 3dcfd76 | 2011-04-28 18:41:09 -0700 | [diff] [blame] | 178 | - The layout editor automatically applies a "zoom to fit" for newly |
| 179 | opened files as well as on device size and orientation changes to |
| 180 | ensure that large layouts are always fully visible unless you |
| 181 | manually zoom in. |
| 182 | - You can drop an "include" tag from the palette, which will pop up |
| 183 | a layout chooser, and the chosen layout is added as an include. |
| 184 | Similarly, dropping images or image buttons will pop up image |
| 185 | resource choosers to initialize the new image with. |
| 186 | - The configuration chooser now applies the "Render Target" and |
| 187 | "Locale" settings project wide, making it trivial to check the |
| 188 | layouts for different languages or render targets without having |
| 189 | to configure these individually for each layout. |
| 190 | - The layout editor is smarter about picking a default theme to |
| 191 | render a layout with, consulting factors like theme registrations |
| 192 | in the manifest, the SDK version, etc. |
| Tor Norbye | fb48dde | 2011-05-19 13:52:31 -0700 | [diff] [blame] | 193 | - The layout editor is also smarter about picking a default |
| 194 | configuration to render a layout with, defaulting to the currently |
| 195 | visible configuration in the previous file. It also considers the |
| 196 | SDK target to determine whether to default to a tablet or phone |
| 197 | screen size. |
| 198 | - Basic focus support: The first text field dropped in a layout is |
| 199 | assigned focus, and there are "Request Focus" and "Clear Focus" |
| 200 | context menu items on text fields to change the focus. |
| Tor Norbye | 3dcfd76 | 2011-04-28 18:41:09 -0700 | [diff] [blame] | 201 | - XML editors: |
| 202 | - Code completion has been significantly improved. It now works |
| 203 | within <style> elements, it completes dimensional units, |
| 204 | it sorts resource paths in values based on the attribute name, |
| 205 | etc. There are also many fixes to handle text replacement. |
| 206 | - AAPT errors are handled better. They are now underlined for the |
| 207 | relevant range in the editor, and a new quickfix makes it trivial |
| 208 | to create missing resources. |
| 209 | - Code completion for drawable, animation and color XML files. |
| 210 | - DDMS: |
| 211 | - "New Folder" action in the File Explorer |
| 212 | - The screenshot dialog will add timestamps to the filenames, and |
| 213 | preserve the orientation on snapshot refresh |
| 214 | - TraceView: Mouse-wheel zoom support in the timeline |
| 215 | - The New Android Project wizard now supports Eclipse working sets |
| 216 | - Most of the tools have improved integration with the Mac OSX |
| 217 | system menu bar. |
| 218 | - Most of the tools have new launcher icons. |
| 219 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 220 | 10.0.1 (March, 2011) |
| Tor Norbye | 3301b68 | 2011-04-05 08:59:12 -0700 | [diff] [blame] | 221 | - Temporary work-around to resolve the rare cases in which the layout |
| 222 | editor will not open. |
| 223 | - Fix issue in which ADT 10.0.0 would install on Eclipse 3.4 and |
| 224 | lower, even though ADT requires Eclipse 3.5 or higher (as of |
| 225 | 10.0.0). |
| 226 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 227 | 10.0.0 (February 22nd, 2011) |
| Tor Norbye | 3301b68 | 2011-04-05 08:59:12 -0700 | [diff] [blame] | 228 | - The tools now automatically generate Java Programming Language |
| 229 | source files (in the gen/ directory) and bytecode (in the res/raw/ |
| 230 | directory) from your .rs files. |
| 231 | - A Binary XML editor has been added. |
| 232 | - Traceview is now integrated into the Eclipse UI. |
| 233 | - The "Go To Declaration" feature for XML and .java files quickly show |
| 234 | all the matches in the project and allows you jump to specific items |
| 235 | such as string translations or onClick handlers. |
| 236 | - The Resource Chooser can create items such as dimensions, integers, |
| 237 | ids, and booleans. |
| 238 | - Improvements to the Visual Layout Editor: |
| 239 | - A new Palette with categories and rendering previews. |
| 240 | - A Layout Actions bar that provides quick access to common layout |
| 241 | operations. |
| 242 | - When the Android 3.0 rendering library is selected, layouts render |
| 243 | more like they do on devices. This includes rendering of status |
| 244 | and title bars to more accurately reflect the actual screen space |
| 245 | available to applications. |
| 246 | - Zoom improvements such as fit to view, persistent scale, and |
| 247 | keyboard access.. |
| 248 | - Further improvements to <merge> layouts, as well as layouts with |
| 249 | gesture overlays. |
| 250 | - Improved rendering error diagnostics. |
| 251 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 252 | 9.0.0 (January 26, 2011) |
| Xavier Ducrohet | 484e7f3 | 2010-11-17 15:17:59 -0800 | [diff] [blame] | 253 | - Visual Layout Editor |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 254 | - Empty layouts with 0,0 size are now automatically expanded when |
| 255 | selected and during drag and drop |
| 256 | - Rendering target can now be changed from the default (project |
| 257 | target) |
| 258 | - When choosing resources for rendering, the API level is properly |
| 259 | handled |
| Tor Norbye | e14b92a | 2011-01-10 19:20:45 -0800 | [diff] [blame] | 260 | - Improved support for rendering <include> and <merge> views |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 261 | - "Extract as Include" refactoring to extract selected views into |
| 262 | a separate included layout. |
| 263 | - String and reference properties can be edited from the layout |
| 264 | editor's context menu |
| 265 | - Rewritten outline drag & drop handling, improved label colors |
| 266 | and content |
| 267 | - The generated XML will be better formatted. Full XML formatter |
| 268 | can be enabled in the preferences (under Android > Editors), but |
| 269 | will touch part of the XML that isn't modified. |
| 270 | - Automatic configuration of many widgets on drop, such as |
| 271 | automatically filling a TextView in a vertical LinearLayout, |
| 272 | adding rows to new tables, etc. |
| 273 | - Double click views to jump to the corresponding XML declaration, |
| 274 | or for included views, to the included layout file |
| Tor Norbye | 6f147bd | 2011-01-17 22:25:54 -0800 | [diff] [blame] | 275 | - Improved support for various views (such as TabHosts and |
| 276 | SlidingDrawers) when rendered using Honeycomb |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 277 | - Go to Declaration hyperlinks for navigating from @resource |
| 278 | references to their XML declarations, from the manifest file to |
| 279 | activity and service classes, from Java access of resource R fields |
| 280 | to the XML declarations, etc. |
| Xavier Ducrohet | 5e9522e | 2011-01-06 18:02:13 -0800 | [diff] [blame] | 281 | - Logcat view in DDMS now properly displays UTF-8 characters. |
| 282 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 283 | 8.0.1 (October 2010) |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 284 | - Fix compilation issue in Android projects referencing standard Java |
| 285 | projects. |
| Xavier Ducrohet | 3e7d21a | 2010-12-07 12:16:53 -0800 | [diff] [blame] | 286 | - Better error reporting when exporting applications for release. |
| 287 | |
| Tor Norbye | f0585b9 | 2011-08-19 19:00:45 -0700 | [diff] [blame] | 288 | 8.0.0 (October 2010) |
| Xavier Ducrohet | fb8fb87 | 2010-09-07 13:18:31 -0700 | [diff] [blame] | 289 | - New version number scheme following the SDK Tools revision number. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 290 | - Support for true debug build. No need to change the value of |
| 291 | debuggable in the Android Manifest. Incremental build will |
| 292 | automatically insert debuggable==true while using the "export |
| 293 | signed/unsigned application package" will not. If debuggable=true |
| 294 | is set, then release builds will actually do a debug build. |
| 295 | - Automatic Proguard support in release builds. Only need to have a |
| 296 | proguard.config property in default.properties that points to a |
| 297 | proguard config file. |
| 298 | - Completely rewritten Visual Layout Editor. This is very much a work |
| 299 | in progress. |
| 300 | - full drag and drop from palette to layout for all Layout |
| 301 | classes. |
| 302 | - Move widgets inside a Layout view, from one Layout view to |
| 303 | another and from one layout file to another. |
| Xavier Ducrohet | a15a4dd | 2010-10-18 14:22:33 -0700 | [diff] [blame] | 304 | - Contextual menu with enum/flag type properties. |
| 305 | - New zoom controls. |
| 306 | - New HierarchyViewer plug-in integrated in Eclipse. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 307 | - Android launch configurations don't recompile the whole workspace on |
| 308 | launch anymore. |
| Xavier Ducrohet | a15a4dd | 2010-10-18 14:22:33 -0700 | [diff] [blame] | 309 | - android.jar source and javadoc location can now be configured. |
| Xavier Ducrohet | fb8fb87 | 2010-09-07 13:18:31 -0700 | [diff] [blame] | 310 | |
| Xavier Ducrohet | 6f43b41 | 2010-09-24 07:19:37 -0700 | [diff] [blame] | 311 | 0.9.9: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 312 | - Fix bug where ADT would delete the source folder of projects |
| 313 | imported from version control. |
| Xavier Ducrohet | fb8fb87 | 2010-09-07 13:18:31 -0700 | [diff] [blame] | 314 | |
| Xavier Ducrohet | 6d092a4 | 2010-06-09 11:23:57 -0700 | [diff] [blame] | 315 | 0.9.8: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 316 | - New Action "Rename Application Package" (under the "Android Tools" |
| 317 | contextual menu) will do a full application package refatoring. |
| 318 | - Fixed issue with library project names containing characters that |
| 319 | aren't compatible with Eclipse path variable. The link between the |
| 320 | main project and the library would fail to create. |
| 321 | - Added support for library projects that don't have a source folder |
| 322 | called "src". There is now support for any number of source folder, |
| 323 | with no name restriction. They can even be in sub folder such as |
| 324 | "src/java". |
| Xavier Ducrohet | b4e4755 | 2010-07-01 18:01:43 -0700 | [diff] [blame] | 325 | - Added support for libraries with library dependencies. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 326 | - added support for new resource qualifiers: car/desk, night/notnight |
| 327 | and navexposed/navhidden |
| 328 | - Added more device screen types for the layout editor. All screen |
| 329 | resolution/density combinations from |
| 330 | http://developer.android.com/guide/practices/screens_support.html#range |
| 331 | is now available. |
| Xavier Ducrohet | 6d092a4 | 2010-06-09 11:23:57 -0700 | [diff] [blame] | 332 | |
| Xavier Ducrohet | eee4bf1 | 2010-03-17 11:47:43 -0700 | [diff] [blame] | 333 | 0.9.7: |
| 334 | - Support for library projects |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 335 | - Updated Property panel for Android project to edit library |
| 336 | dependencies. |
| Xavier Ducrohet | eee4bf1 | 2010-03-17 11:47:43 -0700 | [diff] [blame] | 337 | |
| Xavier Ducrohet | 4055c2a | 2009-12-04 17:55:30 -0800 | [diff] [blame] | 338 | 0.9.6: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 339 | - Editing default.properties outside of eclipse will automatically |
| 340 | update the project |
| 341 | - Fix issue when launching ADT the first time with the SDK Usage panel |
| 342 | that could create a deadlock between modal dialogs |
| 343 | - Launched applications from ADT now behave as if they were clicked |
| 344 | from the Home screen of the emulator. |
| Xavier Ducrohet | 4055c2a | 2009-12-04 17:55:30 -0800 | [diff] [blame] | 345 | - AVD creation dialog now enforce sd card of 9MB or higher |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 346 | - Fixed issue where add-on with no optional library would not show up |
| 347 | as valid targets for application launches. |
| 348 | - Loads the SDK content only when a project requires it. This will |
| 349 | make Eclipse use less resources when the SDK contains many versions |
| 350 | of Android. |
| Xavier Ducrohet | 244d181 | 2009-12-08 16:05:19 -0800 | [diff] [blame] | 351 | - DDMS plug-in now contains the Allocation Tracker view. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 352 | - Lots of fixes in the configuration selector of the Visual Layout |
| 353 | Editor. |
| 354 | - Explode mode in the Visual Layout Editor adds a margin to all layout |
| 355 | objects so that it's easier to see embedded layouts |
| 356 | - Outline mode in the Visual Layout Editor draws layout outline to |
| 357 | make it easier to see layout objects. |
| Xavier Ducrohet | e83bdbb | 2010-01-25 16:36:29 -0800 | [diff] [blame] | 358 | - Fixed issues with the New Project Wizard when selecting samples. |
| 359 | - Fixed possible crash when launching applications |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 360 | - New action in the Logcat view: "Go to problem" lets you go directly |
| 361 | from an exception trace output to the code. |
| Xavier Ducrohet | 4055c2a | 2009-12-04 17:55:30 -0800 | [diff] [blame] | 362 | |
| 363 | 0.9.5: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 364 | - Misc fixes in the SDK Updater |
| Xavier Ducrohet | 4055c2a | 2009-12-04 17:55:30 -0800 | [diff] [blame] | 365 | |
| Raphael | c70406f | 2009-10-02 19:41:49 -0700 | [diff] [blame] | 366 | 0.9.4: |
| 367 | - New "Create project from sample" choice in the New Project Wizard. |
| Xavier Ducrohet | 4055c2a | 2009-12-04 17:55:30 -0800 | [diff] [blame] | 368 | - Improvements to the SDK Updater. |
| 369 | - improvements to the AVD Manager (creation and launch dialogs) |
| 370 | - new configuration selector in the Graphical Layout Editor |
| Raphael | c70406f | 2009-10-02 19:41:49 -0700 | [diff] [blame] | 371 | |
| Xavier Ducrohet | c364a52 | 2009-08-25 20:01:56 -0700 | [diff] [blame] | 372 | 0.9.3: |
| Raphael | 7b9b3d1 | 2009-05-07 19:27:46 -0700 | [diff] [blame] | 373 | - New wizard to create Android JUnit Test Projects. |
| Xavier Ducrohet | ba7dd92 | 2009-07-22 17:39:44 -0700 | [diff] [blame] | 374 | - New AVD wizard. |
| 375 | - SDK Updater |
| Xavier Ducrohet | c364a52 | 2009-08-25 20:01:56 -0700 | [diff] [blame] | 376 | - zipalign support |
| Raphael | 7b9b3d1 | 2009-05-07 19:27:46 -0700 | [diff] [blame] | 377 | |
| Xavier Ducrohet | 679c1a8 | 2009-04-29 17:34:38 -0700 | [diff] [blame] | 378 | 0.9.1: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 379 | |
| 380 | - Added an AVD creation wizard to ADT. It is automatically displayed |
| 381 | during a launch if no compatible AVDs are found. |
| 382 | - Fixed issue with libs/ folder where files with no extension would |
| 383 | prevent the build from finishing. |
| 384 | - Improved error handling during the final steps of the build to mark |
| 385 | the project if an unexpected error prevent the build from finishing. |
| 386 | - Fixed issue when launching ADT on a clean install would trigger |
| 387 | org.eclipse.swt.SWTError: Not implemented [multiple displays]. |
| 388 | |
| Xavier Ducrohet | 679c1a8 | 2009-04-29 17:34:38 -0700 | [diff] [blame] | 389 | |
| 390 | |
| 391 | 0.9.0: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 392 | |
| 393 | - Projects now store generated Java files (R.java/Manifest.java and |
| 394 | output from aidl) in a 'gen' source folder. |
| 395 | - Support for the new Android SDK with support for multiple versions |
| 396 | of the Android platform and for vendor supplied add-ons. |
| 397 | * New Project Wizard lets you choose which platform/add-on to |
| 398 | target. |
| 399 | * Project properties (right click project in Package Explorer, |
| 400 | then "Properties"), lets you edit project target. |
| 401 | * New Launch configuration option to choose debug deployment |
| 402 | target. |
| 403 | - Ability to export multiple apk from one project, using resource |
| 404 | filters. See the 'android' property for Android projects. |
| 405 | - Support for running JUnit tests on a device/emulator from a new |
| 406 | "Android JUnit tests" launch configuration. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 407 | |
| 408 | 0.8.1: |
| 409 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 410 | - Alternate Layout wizard. In the layout editor, the "create" button |
| 411 | is now enabled to easily create alternate versions of the current |
| 412 | layout. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 413 | - Fixed issue with custom themes/styles in the layout editor. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 414 | - Export Wizard: To export an application for release, and sign it |
| 415 | with a non debug key. Accessible from the export menu, from the |
| 416 | Android Tools contextual menu, or from the overview page of the |
| 417 | manifest editor. |
| 418 | - New XML File Wizard: To easily create new XML resources file in the |
| 419 | /res directory. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 420 | - New checks on launch when attempting to debug on a device. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 421 | - Basic support for drag'n'drop in Graphical layout editor. You can |
| 422 | add new items by drag'n'drop from the palette. There is no support |
| 423 | for moving/resizing yet. |
| 424 | - Undo/redo support in all XML form editors and Graphical layout |
| 425 | editor. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 426 | |
| 427 | 0.8.0: |
| 428 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 429 | - Fixed issue with using custom classes implementing Parcelable in |
| 430 | aidl files. Right click the project and choose Android Tools > |
| 431 | Create aidl preprocess file for Parcelable Classes. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 432 | - Added Custom Themes to theme drop down in the layout editor. |
| 433 | - Customizable debug signing keystore path in preferences |
| 434 | - Customizable HOME package name. |
| 435 | |
| 436 | 0.7.1: |
| 437 | |
| 438 | - Layout Editor. |
| 439 | |
| 440 | 0.6.1: |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 441 | - Fixed install issue when project name contains spaces (requires new |
| 442 | emulator image) |
| 443 | - Fixed setup of the New class wizard in the manifest (when clicking |
| 444 | on "name" for a class attribute) in the cases where the class and |
| 445 | some of its parent packages were missing. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 446 | - Properly kill the application that is about to be reinstalled. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 447 | - Create missing android folder automatically when building |
| 448 | application (caused a signing error) |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 449 | - Manifest editor: support for uses-library node |
| 450 | - Fixed NPE in editors.xml.descriptors.XmlDescriptors.createPreference |
| 451 | - Fixed assert in MultiEditorPart.setActivePage |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 452 | - Fixed "connect to debugger" button in DeviceView. Also fixed support |
| 453 | for custom process names. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 454 | |
| 455 | 0.6.0: |
| 456 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 457 | - New launch option for activity. Can choose to launch default |
| 458 | activity (finds an activity configured to show up in the home |
| 459 | screen), or specific activity, or none. |
| 460 | - Normal java resources (non java files placed in package folders) are |
| 461 | now properly packaged in the final package, and can be accessed |
| 462 | through normal java API such as ClassLoader.getResourceAsStream() |
| 463 | - Launch configuration now has an option to wipe emulator data on |
| 464 | launch. This always asks for confirmation. |
| 465 | - Launch configuration now has an option to disable the boot |
| 466 | animation. This will let the emulator start faster on older |
| 467 | computers. |
| 468 | - Applications are now signed with a debug key (stored in |
| 469 | debug.keystore in ~/.android). |
| 470 | - Installation of application is now more robust and will notify of |
| 471 | installation failure. Also installation is blocking, removing issues |
| 472 | where ADT tried to launch the activity before the app was installed. |
| 473 | - Tree-based resource editor + content assist in XML editor for |
| 474 | layout, menu, preferences, values xml files. Work in progress... |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 475 | |
| 476 | |
| 477 | 0.4.0 (adt 0.4.0, ddms 0.3.0, editors 0.2.0, common 0.1.0) |
| 478 | |
| 479 | - New AndroidManifest editor. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 480 | - True multiple device support allowing debugging apps on several |
| 481 | device at the same time |
| 482 | - New launch modes for device selection: automatic will launch an |
| 483 | emulator if no device are present, automatically target the device |
| 484 | if only one exists, and prompt the user if 2+ are connected. Manual |
| 485 | mode always prompt the user. |
| 486 | - New classpath container remove the dependencies on the location of |
| 487 | android.jar making it easier to share a project through dsvn, cvs, |
| 488 | etc... You should fix your project (right click project, choose |
| 489 | Android > Fix Project properties) |
| 490 | - Fixed a case where pm would fail and would up end outputting the |
| 491 | "usage" text, which would in turn confuse the plugin during parsing. |
| 492 | - Fixed an issue with compiling aidl file when they import project |
| 493 | local files. |
| 494 | |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 495 | |
| 496 | 0.3.4 (adt 0.3.4, ddms 0.2.3, editors 0.1.0) |
| 497 | |
| 498 | Internal release only. |
| 499 | - Enabled device support. |
| 500 | |
| 501 | 0.3.3 (adt 0.3.3, ddms 0.2.3, editors 0.1.0) |
| 502 | |
| 503 | - Support for referenced projects. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 504 | - During launch, display if a package conflict occurs when the new |
| 505 | application is pushed onto the device. |
| 506 | - You can now change the font of the logcat view. Also indentation is |
| 507 | now properly displayed. |
| 508 | - Plugin generated files are now properly marked as derived. This will |
| 509 | make Team plugins ignore them. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 510 | |
| 511 | 0.3.2 |
| 512 | |
| 513 | - XML Highlighting for AndroidManifest.xml (requires WebTools WST plugin) |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 514 | - Custom java editor for R.java/Manifest.java to make those files non |
| 515 | editable. This is to replace the current locking mechanism which |
| 516 | causes issues on Mac OS. |
| 517 | - Fixed some issue in the "Restart adb" feature in the device view of |
| 518 | ddms. |
| 519 | - Better handling of aidl files and the java files generated from |
| 520 | them. |
| 521 | - Plugin now retries to launch the app on the emulator if it fails due |
| 522 | to timing issues. |
| 523 | - Skin dropdown in the Emulator/Target tabs is now build from the |
| 524 | content of the skin directory, to support developer made skins. |
| 525 | - Emulator control panel. This is a UI on top of the emulator |
| 526 | console. it allows you to change the state of the network and gsm |
| 527 | connection, and to initiate incoming voice call. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 528 | |
| 529 | 0.3.1 |
| 530 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 531 | - Fixed issue on winXP/Eclipse 3.2 where errors in the New Project |
| 532 | Wizard would not display. |
| 533 | - Added missing intent definition in the AndroidManifest.xml file |
| 534 | created by the New Project Wizard. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 535 | - Fixed possible NPE in the debug action from the Process View |
| 536 | - Support for Eclipse 3.4 |
| 537 | |
| 538 | 0.2.6 / 0.3.0 |
| 539 | |
| 540 | - New Project Wizard now makes it easy to open Android sample code |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 541 | - Plugin will output a warning if the build id of the device/emulator |
| 542 | does not match the sdk build id. |
| 543 | - Java/Debug/ddms perspective now contains direct menus to open some |
| 544 | of the ddms views, and to create a new android project. This will |
| 545 | require you to reset your perspectives. |
| 546 | - Error during builds now put an error marker on the project instead |
| 547 | of displaying an (annoying) dialog box. |
| 548 | - Custom builders now remember their build state when restarting |
| 549 | eclipse. |
| 550 | - Properly parse some aapt warnings and don't abort the build when |
| 551 | they happen. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 552 | - Abort launch and prompt the user if the project contains errors. |
| 553 | - New silent/normal/verbose build output. |
| 554 | |
| 555 | 0.2.5 |
| 556 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 557 | - Check compiler compliance level before compilation and abort if |
| 558 | different from 1.5 |
| 559 | - Fix Project Properties will fix the project compiler compliance if |
| 560 | needed. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 561 | - Fixed an issue with multiple source folders. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 562 | - Added support for new Manifest.java class (it is automatically |
| 563 | generated with R.java if the content of the AndroidManifest.xml |
| 564 | requires it) |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 565 | - Fixed an issue that could result in not packaging code changes. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 566 | - Automatic fix of the Launch Configurations when the java package in |
| 567 | the manifest is changed. Also improved Launch Config dialog and |
| 568 | error alert for erroneous activity names in the Launch |
| 569 | Configuration. |
| 570 | - Support for external jars that are not under the project root |
| 571 | directory. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 572 | - New projects have a default layout. |
| 573 | - Misc fixes for Windows support. |
| 574 | |
| 575 | 0.2.4 |
| 576 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 577 | - Fixed large resource corruption issue. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 578 | |
| 579 | 0.2.3 |
| 580 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 581 | - Fixed issue related to the integration of dx. |
| 582 | - Fixed issue related to the package generation that was modified for |
| 583 | windows support. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 584 | |
| 585 | 0.2.2 |
| 586 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 587 | - Changing the SDK location in the Preferences does not require to |
| 588 | restart Eclipse anymore. |
| 589 | - New SDK-Project sync mode in Android preference pane. Default value |
| 590 | set to true. If true, all android projects are automatically sync'ed |
| 591 | to the SDK defined in the preferences. |
| 592 | - Cases where no emulator is running but a dialog still says "An |
| 593 | emulator is running..." should be less frequent. |
| 594 | - Projects do not reference the standard desktop JRE anymore, as |
| 595 | android.zip contains the core java library. This will solve the case |
| 596 | where using a core class non present on the platform would not |
| 597 | generate a compilation error. |
| 598 | - Changing the package defined in the manifest now deletes the R.java |
| 599 | class from its previous location. This will require 1 build after |
| 600 | upgrading the plugin, before it works. |
| 601 | - Project selection in the Launch Config Dialog now only shows Android |
| 602 | projects. |
| 603 | - Launching a debug/run session now checks that the project uses the |
| 604 | SDK set in the preferences (This is for the non automatic sync |
| 605 | mode). |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 606 | - Removed obsolete wallpaper mode in the New Project Creation Wizard. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 607 | - dx (dalvik code conversion tool) now embedded instead of calling the |
| 608 | external version. |
| 609 | - Improvements in the parsing of the aapt errors. |
| 610 | - Some fixes for windows support. |
| 611 | |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 612 | |
| 613 | 0.2.1 |
| 614 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 615 | - Fixed bug in logcat search where invalid regexp would cause a crash |
| 616 | - Minor improvements to the build/launch process. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 617 | |
| 618 | 0.2.0 |
| 619 | |
| 620 | - Logcat view. |
| 621 | - File Explorer view. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 622 | - Custom options for emulator. In the Launch configuration dialog you |
| 623 | can specify custom command line emulator options. See |
| 624 | "emulator -help" for available options. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 625 | - Android Tools > Export Application Package is now implemented. |
| 626 | - Misc incremental builder fixes. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 627 | - Including static .jar files as library in your project will |
| 628 | automatically include them in the final APK. Warning: only the |
| 629 | .class content is included. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 630 | |
| 631 | 0.1.10 |
| 632 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 633 | - The res and assets folders now fully refresh before the build, |
| 634 | ensuring R.java and packaged resources are always up to date. This |
| 635 | can be disabled in the preferences under "Android" if this becomes |
| 636 | slow due to too many files. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 637 | |
| 638 | 0.1.9 |
| 639 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 640 | - New Action in the "Processes" view to debug an application that is |
| 641 | already running. The source project for this application MUST be |
| 642 | opened in the current workspace. |
| 643 | - Building the project now force refreshes the res folder. This should |
| 644 | help rebuilding the resources when only binary files were changed |
| 645 | from outside eclipse. |
| 646 | - Clean/full builds now compile all aidl files found in the build path |
| 647 | (previously only incremental builds would compile them). Also, misc |
| 648 | improvements to the incremental builders. |
| 649 | - Starting a run/debug session now asks to save the files and forces a |
| 650 | new build to ensure that the latest package is pushed on the device. |
| 651 | - Plugin should be less aggressive when waiting for the emulator to be |
| 652 | ready. This should translate in fewer failed launches. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 653 | |
| 654 | 0.1.8 |
| 655 | |
| 656 | - Fixed Debugger issue introduced in 0.1.6 |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 657 | - Added Log level preferences for DDMS. Look under Android > DDMS > |
| 658 | Advanced. Default error level is Error. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 659 | |
| 660 | 0.1.7 |
| 661 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 662 | - Fixed issue where java warnings wouldn't trigger a new package. Now |
| 663 | only errors stop the packaging like it should be. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 664 | - Added more error output in the console during launch. |
| 665 | |
| 666 | 0.1.6 |
| 667 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 668 | - New "Android" Console. It receives the error output from external |
| 669 | tools such and aidl, dx, and aapt (only when they can't be |
| 670 | parsed). Any error force the console to be displayed. |
| 671 | - The Activity Manager on the device/emulator now outputs some |
| 672 | messages in the "Android" console when asked to start an |
| 673 | activity. This should help you figure out what is wrong if the |
| 674 | application doesn't start. |
| 675 | - Fixed a case where the .apk file would be updated with broken |
| 676 | code. Now if there are java compile error, the .apk is not touched. |
| 677 | - Added support for manifest with non fully qualified activity java |
| 678 | name, yet not starting with a dot. |
| 679 | - Fixed creation of manifest files (through New Project wizard) to use |
| 680 | proper namespace for attributes. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 681 | - Better error reporting for namespace issue in the manifest. |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 682 | - "Reset Adb" action from the device view. Use this is the plugin |
| 683 | tells you an emulator is running when there are none. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 684 | - New "ddms" Console which receives the standard output of ddms. |
| 685 | |
| 686 | 0.1.5 |
| 687 | |
| 688 | - Support for new activity declaration inside AndroidManifest.xml |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 689 | - fixed issue that prevented bin/ to be removed from the buildpath |
| 690 | when converting project. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 691 | |
| 692 | 0.1.4 |
| 693 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 694 | - Changes in the Manifest, now properly trigger a new package of the |
| 695 | resources. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 696 | |
| 697 | 0.1.3 |
| 698 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 699 | - Fixed the "fix project properties" action to remove old framework |
| 700 | libraries, just not add new ones. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 701 | |
| 702 | 0.1.2 |
| 703 | |
| Tor Norbye | 9f321db | 2011-01-10 19:45:35 -0800 | [diff] [blame] | 704 | - aidl builder. The Android Resources PreBuilder now also converts |
| 705 | aidl files into java files. |
| 706 | - New Project wizard now allows to make Wallpaper activities instead |
| 707 | of gadgets (which are obsolete.) |
| 708 | - Launch shortcuts. Right click in the package explorer allow you to |
| 709 | launch the application in debug or run mode directly without |
| 710 | creating launch configurations. |
| 711 | - New project wizard and Project conversion now sets up the java doc |
| 712 | path for android.zip |
| 713 | - Package builder now supports custom application assets placed in |
| 714 | assets/ (which is now created automatically by the New Project |
| 715 | Wizard). |
| 716 | - New action: Android Tools > Fix Project Properties, in the package |
| 717 | explorer contextual menu. This allows you to fix the framework path |
| 718 | (and its javadoc path) in case you change the sdk location. |
| The Android Open Source Project | 55a2c71 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 719 | |
| 720 | 0.1.1 |
| 721 | |
| 722 | - Fixed project convertor to add the framework library if missing. |
| 723 | |
| 724 | 0.1.0 |
| 725 | |
| 726 | - New project wizard. |
| 727 | - Python script-generated project convertor. |
| 728 | - Incremental builders. |
| 729 | - XML validation for resource files. |
| 730 | - Android Launch Configuration. |