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