blob: 617dbb24fe67d64b26fcb033ff59675376c8373a [file] [log] [blame]
Tor Norbye3301b682011-04-05 08:59:12 -0700110.0.1
2- Temporary work-around to resolve the rare cases in which the layout
3 editor will not open.
4- Fix issue in which ADT 10.0.0 would install on Eclipse 3.4 and
5 lower, even though ADT requires Eclipse 3.5 or higher (as of
6 10.0.0).
7
810.0.0
9- The tools now automatically generate Java Programming Language
10 source files (in the gen/ directory) and bytecode (in the res/raw/
11 directory) from your .rs files.
12- A Binary XML editor has been added.
13- Traceview is now integrated into the Eclipse UI.
14- The "Go To Declaration" feature for XML and .java files quickly show
15 all the matches in the project and allows you jump to specific items
16 such as string translations or onClick handlers.
17- The Resource Chooser can create items such as dimensions, integers,
18 ids, and booleans.
19- Improvements to the Visual Layout Editor:
20 - A new Palette with categories and rendering previews.
21 - A Layout Actions bar that provides quick access to common layout
22 operations.
23 - When the Android 3.0 rendering library is selected, layouts render
24 more like they do on devices. This includes rendering of status
25 and title bars to more accurately reflect the actual screen space
26 available to applications.
27 - Zoom improvements such as fit to view, persistent scale, and
28 keyboard access..
29 - Further improvements to <merge> layouts, as well as layouts with
30 gesture overlays.
31 - Improved rendering error diagnostics.
32
Xavier Ducrohet484e7f32010-11-17 15:17:59 -0800339.0.0
34- Visual Layout Editor
Tor Norbye9f321db2011-01-10 19:45:35 -080035 - Empty layouts with 0,0 size are now automatically expanded when
36 selected and during drag and drop
37 - Rendering target can now be changed from the default (project
38 target)
39 - When choosing resources for rendering, the API level is properly
40 handled
Tor Norbyee14b92a2011-01-10 19:20:45 -080041 - Improved support for rendering <include> and <merge> views
Tor Norbye9f321db2011-01-10 19:45:35 -080042 - "Extract as Include" refactoring to extract selected views into
43 a separate included layout.
44 - String and reference properties can be edited from the layout
45 editor's context menu
46 - Rewritten outline drag & drop handling, improved label colors
47 and content
48 - The generated XML will be better formatted. Full XML formatter
49 can be enabled in the preferences (under Android > Editors), but
50 will touch part of the XML that isn't modified.
51 - Automatic configuration of many widgets on drop, such as
52 automatically filling a TextView in a vertical LinearLayout,
53 adding rows to new tables, etc.
54 - Double click views to jump to the corresponding XML declaration,
55 or for included views, to the included layout file
Tor Norbye6f147bd2011-01-17 22:25:54 -080056 - Improved support for various views (such as TabHosts and
57 SlidingDrawers) when rendered using Honeycomb
Tor Norbye9f321db2011-01-10 19:45:35 -080058- Go to Declaration hyperlinks for navigating from @resource
59 references to their XML declarations, from the manifest file to
60 activity and service classes, from Java access of resource R fields
61 to the XML declarations, etc.
Xavier Ducrohet5e9522e2011-01-06 18:02:13 -080062- Logcat view in DDMS now properly displays UTF-8 characters.
63
Xavier Ducrohet3e7d21a2010-12-07 12:16:53 -0800648.0.1:
Tor Norbye9f321db2011-01-10 19:45:35 -080065- Fix compilation issue in Android projects referencing standard Java
66 projects.
Xavier Ducrohet3e7d21a2010-12-07 12:16:53 -080067- Better error reporting when exporting applications for release.
68
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700698.0.0
70- New version number scheme following the SDK Tools revision number.
Tor Norbye9f321db2011-01-10 19:45:35 -080071- Support for true debug build. No need to change the value of
72 debuggable in the Android Manifest. Incremental build will
73 automatically insert debuggable==true while using the "export
74 signed/unsigned application package" will not. If debuggable=true
75 is set, then release builds will actually do a debug build.
76- Automatic Proguard support in release builds. Only need to have a
77 proguard.config property in default.properties that points to a
78 proguard config file.
79- Completely rewritten Visual Layout Editor. This is very much a work
80 in progress.
81 - full drag and drop from palette to layout for all Layout
82 classes.
83 - Move widgets inside a Layout view, from one Layout view to
84 another and from one layout file to another.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -070085 - Contextual menu with enum/flag type properties.
86 - New zoom controls.
87- New HierarchyViewer plug-in integrated in Eclipse.
Tor Norbye9f321db2011-01-10 19:45:35 -080088- Android launch configurations don't recompile the whole workspace on
89 launch anymore.
Xavier Ducroheta15a4dd2010-10-18 14:22:33 -070090- android.jar source and javadoc location can now be configured.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -070091
Xavier Ducrohet6f43b412010-09-24 07:19:37 -0700920.9.9:
Tor Norbye9f321db2011-01-10 19:45:35 -080093- Fix bug where ADT would delete the source folder of projects
94 imported from version control.
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -070095
Xavier Ducrohet6d092a42010-06-09 11:23:57 -0700960.9.8:
Tor Norbye9f321db2011-01-10 19:45:35 -080097- New Action "Rename Application Package" (under the "Android Tools"
98 contextual menu) will do a full application package refatoring.
99- Fixed issue with library project names containing characters that
100 aren't compatible with Eclipse path variable. The link between the
101 main project and the library would fail to create.
102- Added support for library projects that don't have a source folder
103 called "src". There is now support for any number of source folder,
104 with no name restriction. They can even be in sub folder such as
105 "src/java".
Xavier Ducrohetb4e47552010-07-01 18:01:43 -0700106- Added support for libraries with library dependencies.
Tor Norbye9f321db2011-01-10 19:45:35 -0800107- added support for new resource qualifiers: car/desk, night/notnight
108 and navexposed/navhidden
109- Added more device screen types for the layout editor. All screen
110 resolution/density combinations from
111 http://developer.android.com/guide/practices/screens_support.html#range
112 is now available.
Xavier Ducrohet6d092a42010-06-09 11:23:57 -0700113
Xavier Ducroheteee4bf12010-03-17 11:47:43 -07001140.9.7:
115- Support for library projects
Tor Norbye9f321db2011-01-10 19:45:35 -0800116- Updated Property panel for Android project to edit library
117 dependencies.
Xavier Ducroheteee4bf12010-03-17 11:47:43 -0700118
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -08001190.9.6:
Tor Norbye9f321db2011-01-10 19:45:35 -0800120- Editing default.properties outside of eclipse will automatically
121 update the project
122- Fix issue when launching ADT the first time with the SDK Usage panel
123 that could create a deadlock between modal dialogs
124- Launched applications from ADT now behave as if they were clicked
125 from the Home screen of the emulator.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800126- AVD creation dialog now enforce sd card of 9MB or higher
Tor Norbye9f321db2011-01-10 19:45:35 -0800127- Fixed issue where add-on with no optional library would not show up
128 as valid targets for application launches.
129- Loads the SDK content only when a project requires it. This will
130 make Eclipse use less resources when the SDK contains many versions
131 of Android.
Xavier Ducrohet244d1812009-12-08 16:05:19 -0800132- DDMS plug-in now contains the Allocation Tracker view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800133- Lots of fixes in the configuration selector of the Visual Layout
134 Editor.
135- Explode mode in the Visual Layout Editor adds a margin to all layout
136 objects so that it's easier to see embedded layouts
137- Outline mode in the Visual Layout Editor draws layout outline to
138 make it easier to see layout objects.
Xavier Ducrohete83bdbb2010-01-25 16:36:29 -0800139- Fixed issues with the New Project Wizard when selecting samples.
140- Fixed possible crash when launching applications
Tor Norbye9f321db2011-01-10 19:45:35 -0800141- New action in the Logcat view: "Go to problem" lets you go directly
142 from an exception trace output to the code.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800143
1440.9.5:
Tor Norbye9f321db2011-01-10 19:45:35 -0800145- Misc fixes in the SDK Updater
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800146
Raphaelc70406f2009-10-02 19:41:49 -07001470.9.4:
148- New "Create project from sample" choice in the New Project Wizard.
Xavier Ducrohet4055c2a2009-12-04 17:55:30 -0800149- Improvements to the SDK Updater.
150- improvements to the AVD Manager (creation and launch dialogs)
151- new configuration selector in the Graphical Layout Editor
Raphaelc70406f2009-10-02 19:41:49 -0700152
Xavier Ducrohetc364a522009-08-25 20:01:56 -07001530.9.3:
Raphael7b9b3d12009-05-07 19:27:46 -0700154- New wizard to create Android JUnit Test Projects.
Xavier Ducrohetba7dd922009-07-22 17:39:44 -0700155- New AVD wizard.
156- SDK Updater
Xavier Ducrohetc364a522009-08-25 20:01:56 -0700157- zipalign support
Raphael7b9b3d12009-05-07 19:27:46 -0700158
Xavier Ducrohet679c1a82009-04-29 17:34:38 -07001590.9.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800160
161- Added an AVD creation wizard to ADT. It is automatically displayed
162 during a launch if no compatible AVDs are found.
163- Fixed issue with libs/ folder where files with no extension would
164 prevent the build from finishing.
165- Improved error handling during the final steps of the build to mark
166 the project if an unexpected error prevent the build from finishing.
167- Fixed issue when launching ADT on a clean install would trigger
168 org.eclipse.swt.SWTError: Not implemented [multiple displays].
169
Xavier Ducrohet679c1a82009-04-29 17:34:38 -0700170
171
1720.9.0:
Tor Norbye9f321db2011-01-10 19:45:35 -0800173
174- Projects now store generated Java files (R.java/Manifest.java and
175 output from aidl) in a 'gen' source folder.
176- Support for the new Android SDK with support for multiple versions
177 of the Android platform and for vendor supplied add-ons.
178 * New Project Wizard lets you choose which platform/add-on to
179 target.
180 * Project properties (right click project in Package Explorer,
181 then "Properties"), lets you edit project target.
182 * New Launch configuration option to choose debug deployment
183 target.
184- Ability to export multiple apk from one project, using resource
185 filters. See the 'android' property for Android projects.
186- Support for running JUnit tests on a device/emulator from a new
187 "Android JUnit tests" launch configuration.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800188
1890.8.1:
190
Tor Norbye9f321db2011-01-10 19:45:35 -0800191- Alternate Layout wizard. In the layout editor, the "create" button
192 is now enabled to easily create alternate versions of the current
193 layout.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800194- Fixed issue with custom themes/styles in the layout editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800195- Export Wizard: To export an application for release, and sign it
196 with a non debug key. Accessible from the export menu, from the
197 Android Tools contextual menu, or from the overview page of the
198 manifest editor.
199- New XML File Wizard: To easily create new XML resources file in the
200 /res directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800201- New checks on launch when attempting to debug on a device.
Tor Norbye9f321db2011-01-10 19:45:35 -0800202- Basic support for drag'n'drop in Graphical layout editor. You can
203 add new items by drag'n'drop from the palette. There is no support
204 for moving/resizing yet.
205- Undo/redo support in all XML form editors and Graphical layout
206 editor.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800207
2080.8.0:
209
Tor Norbye9f321db2011-01-10 19:45:35 -0800210- Fixed issue with using custom classes implementing Parcelable in
211 aidl files. Right click the project and choose Android Tools >
212 Create aidl preprocess file for Parcelable Classes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800213- Added Custom Themes to theme drop down in the layout editor.
214- Customizable debug signing keystore path in preferences
215- Customizable HOME package name.
216
2170.7.1:
218
219- Layout Editor.
220
2210.6.1:
Tor Norbye9f321db2011-01-10 19:45:35 -0800222- Fixed install issue when project name contains spaces (requires new
223 emulator image)
224- Fixed setup of the New class wizard in the manifest (when clicking
225 on "name" for a class attribute) in the cases where the class and
226 some of its parent packages were missing.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800227- Properly kill the application that is about to be reinstalled.
Tor Norbye9f321db2011-01-10 19:45:35 -0800228- Create missing android folder automatically when building
229 application (caused a signing error)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800230- Manifest editor: support for uses-library node
231- Fixed NPE in editors.xml.descriptors.XmlDescriptors.createPreference
232- Fixed assert in MultiEditorPart.setActivePage
Tor Norbye9f321db2011-01-10 19:45:35 -0800233- Fixed "connect to debugger" button in DeviceView. Also fixed support
234 for custom process names.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800235
2360.6.0:
237
Tor Norbye9f321db2011-01-10 19:45:35 -0800238- New launch option for activity. Can choose to launch default
239 activity (finds an activity configured to show up in the home
240 screen), or specific activity, or none.
241- Normal java resources (non java files placed in package folders) are
242 now properly packaged in the final package, and can be accessed
243 through normal java API such as ClassLoader.getResourceAsStream()
244- Launch configuration now has an option to wipe emulator data on
245 launch. This always asks for confirmation.
246- Launch configuration now has an option to disable the boot
247 animation. This will let the emulator start faster on older
248 computers.
249- Applications are now signed with a debug key (stored in
250 debug.keystore in ~/.android).
251- Installation of application is now more robust and will notify of
252 installation failure. Also installation is blocking, removing issues
253 where ADT tried to launch the activity before the app was installed.
254- Tree-based resource editor + content assist in XML editor for
255 layout, menu, preferences, values xml files. Work in progress...
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800256
257
2580.4.0 (adt 0.4.0, ddms 0.3.0, editors 0.2.0, common 0.1.0)
259
260- New AndroidManifest editor.
Tor Norbye9f321db2011-01-10 19:45:35 -0800261- True multiple device support allowing debugging apps on several
262 device at the same time
263- New launch modes for device selection: automatic will launch an
264 emulator if no device are present, automatically target the device
265 if only one exists, and prompt the user if 2+ are connected. Manual
266 mode always prompt the user.
267- New classpath container remove the dependencies on the location of
268 android.jar making it easier to share a project through dsvn, cvs,
269 etc... You should fix your project (right click project, choose
270 Android > Fix Project properties)
271- Fixed a case where pm would fail and would up end outputting the
272 "usage" text, which would in turn confuse the plugin during parsing.
273- Fixed an issue with compiling aidl file when they import project
274 local files.
275
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800276
2770.3.4 (adt 0.3.4, ddms 0.2.3, editors 0.1.0)
278
279Internal release only.
280- Enabled device support.
281
2820.3.3 (adt 0.3.3, ddms 0.2.3, editors 0.1.0)
283
284- Support for referenced projects.
Tor Norbye9f321db2011-01-10 19:45:35 -0800285- During launch, display if a package conflict occurs when the new
286 application is pushed onto the device.
287- You can now change the font of the logcat view. Also indentation is
288 now properly displayed.
289- Plugin generated files are now properly marked as derived. This will
290 make Team plugins ignore them.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800291
2920.3.2
293
294- XML Highlighting for AndroidManifest.xml (requires WebTools WST plugin)
Tor Norbye9f321db2011-01-10 19:45:35 -0800295- Custom java editor for R.java/Manifest.java to make those files non
296 editable. This is to replace the current locking mechanism which
297 causes issues on Mac OS.
298- Fixed some issue in the "Restart adb" feature in the device view of
299 ddms.
300- Better handling of aidl files and the java files generated from
301 them.
302- Plugin now retries to launch the app on the emulator if it fails due
303 to timing issues.
304- Skin dropdown in the Emulator/Target tabs is now build from the
305 content of the skin directory, to support developer made skins.
306- Emulator control panel. This is a UI on top of the emulator
307 console. it allows you to change the state of the network and gsm
308 connection, and to initiate incoming voice call.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800309
3100.3.1
311
Tor Norbye9f321db2011-01-10 19:45:35 -0800312- Fixed issue on winXP/Eclipse 3.2 where errors in the New Project
313 Wizard would not display.
314- Added missing intent definition in the AndroidManifest.xml file
315 created by the New Project Wizard.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800316- Fixed possible NPE in the debug action from the Process View
317- Support for Eclipse 3.4
318
3190.2.6 / 0.3.0
320
321- New Project Wizard now makes it easy to open Android sample code
Tor Norbye9f321db2011-01-10 19:45:35 -0800322- Plugin will output a warning if the build id of the device/emulator
323 does not match the sdk build id.
324- Java/Debug/ddms perspective now contains direct menus to open some
325 of the ddms views, and to create a new android project. This will
326 require you to reset your perspectives.
327- Error during builds now put an error marker on the project instead
328 of displaying an (annoying) dialog box.
329- Custom builders now remember their build state when restarting
330 eclipse.
331- Properly parse some aapt warnings and don't abort the build when
332 they happen.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800333- Abort launch and prompt the user if the project contains errors.
334- New silent/normal/verbose build output.
335
3360.2.5
337
Tor Norbye9f321db2011-01-10 19:45:35 -0800338- Check compiler compliance level before compilation and abort if
339 different from 1.5
340- Fix Project Properties will fix the project compiler compliance if
341 needed.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800342- Fixed an issue with multiple source folders.
Tor Norbye9f321db2011-01-10 19:45:35 -0800343- Added support for new Manifest.java class (it is automatically
344 generated with R.java if the content of the AndroidManifest.xml
345 requires it)
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800346- Fixed an issue that could result in not packaging code changes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800347- Automatic fix of the Launch Configurations when the java package in
348 the manifest is changed. Also improved Launch Config dialog and
349 error alert for erroneous activity names in the Launch
350 Configuration.
351- Support for external jars that are not under the project root
352 directory.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800353- New projects have a default layout.
354- Misc fixes for Windows support.
355
3560.2.4
357
Tor Norbye9f321db2011-01-10 19:45:35 -0800358- Fixed large resource corruption issue.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800359
3600.2.3
361
Tor Norbye9f321db2011-01-10 19:45:35 -0800362- Fixed issue related to the integration of dx.
363- Fixed issue related to the package generation that was modified for
364 windows support.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800365
3660.2.2
367
Tor Norbye9f321db2011-01-10 19:45:35 -0800368- Changing the SDK location in the Preferences does not require to
369 restart Eclipse anymore.
370- New SDK-Project sync mode in Android preference pane. Default value
371 set to true. If true, all android projects are automatically sync'ed
372 to the SDK defined in the preferences.
373- Cases where no emulator is running but a dialog still says "An
374 emulator is running..." should be less frequent.
375- Projects do not reference the standard desktop JRE anymore, as
376 android.zip contains the core java library. This will solve the case
377 where using a core class non present on the platform would not
378 generate a compilation error.
379- Changing the package defined in the manifest now deletes the R.java
380 class from its previous location. This will require 1 build after
381 upgrading the plugin, before it works.
382- Project selection in the Launch Config Dialog now only shows Android
383 projects.
384- Launching a debug/run session now checks that the project uses the
385 SDK set in the preferences (This is for the non automatic sync
386 mode).
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800387- Removed obsolete wallpaper mode in the New Project Creation Wizard.
Tor Norbye9f321db2011-01-10 19:45:35 -0800388- dx (dalvik code conversion tool) now embedded instead of calling the
389 external version.
390- Improvements in the parsing of the aapt errors.
391- Some fixes for windows support.
392
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800393
3940.2.1
395
Tor Norbye9f321db2011-01-10 19:45:35 -0800396- Fixed bug in logcat search where invalid regexp would cause a crash
397- Minor improvements to the build/launch process.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800398
3990.2.0
400
401- Logcat view.
402- File Explorer view.
Tor Norbye9f321db2011-01-10 19:45:35 -0800403- Custom options for emulator. In the Launch configuration dialog you
404 can specify custom command line emulator options. See
405 "emulator -help" for available options.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800406- Android Tools > Export Application Package is now implemented.
407- Misc incremental builder fixes.
Tor Norbye9f321db2011-01-10 19:45:35 -0800408- Including static .jar files as library in your project will
409 automatically include them in the final APK. Warning: only the
410 .class content is included.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800411
4120.1.10
413
Tor Norbye9f321db2011-01-10 19:45:35 -0800414- The res and assets folders now fully refresh before the build,
415 ensuring R.java and packaged resources are always up to date. This
416 can be disabled in the preferences under "Android" if this becomes
417 slow due to too many files.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800418
4190.1.9
420
Tor Norbye9f321db2011-01-10 19:45:35 -0800421- New Action in the "Processes" view to debug an application that is
422 already running. The source project for this application MUST be
423 opened in the current workspace.
424- Building the project now force refreshes the res folder. This should
425 help rebuilding the resources when only binary files were changed
426 from outside eclipse.
427- Clean/full builds now compile all aidl files found in the build path
428 (previously only incremental builds would compile them). Also, misc
429 improvements to the incremental builders.
430- Starting a run/debug session now asks to save the files and forces a
431 new build to ensure that the latest package is pushed on the device.
432- Plugin should be less aggressive when waiting for the emulator to be
433 ready. This should translate in fewer failed launches.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800434
4350.1.8
436
437- Fixed Debugger issue introduced in 0.1.6
Tor Norbye9f321db2011-01-10 19:45:35 -0800438- Added Log level preferences for DDMS. Look under Android > DDMS >
439 Advanced. Default error level is Error.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800440
4410.1.7
442
Tor Norbye9f321db2011-01-10 19:45:35 -0800443- Fixed issue where java warnings wouldn't trigger a new package. Now
444 only errors stop the packaging like it should be.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800445- Added more error output in the console during launch.
446
4470.1.6
448
Tor Norbye9f321db2011-01-10 19:45:35 -0800449- New "Android" Console. It receives the error output from external
450 tools such and aidl, dx, and aapt (only when they can't be
451 parsed). Any error force the console to be displayed.
452- The Activity Manager on the device/emulator now outputs some
453 messages in the "Android" console when asked to start an
454 activity. This should help you figure out what is wrong if the
455 application doesn't start.
456- Fixed a case where the .apk file would be updated with broken
457 code. Now if there are java compile error, the .apk is not touched.
458- Added support for manifest with non fully qualified activity java
459 name, yet not starting with a dot.
460- Fixed creation of manifest files (through New Project wizard) to use
461 proper namespace for attributes.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800462- Better error reporting for namespace issue in the manifest.
Tor Norbye9f321db2011-01-10 19:45:35 -0800463- "Reset Adb" action from the device view. Use this is the plugin
464 tells you an emulator is running when there are none.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800465- New "ddms" Console which receives the standard output of ddms.
466
4670.1.5
468
469- Support for new activity declaration inside AndroidManifest.xml
Tor Norbye9f321db2011-01-10 19:45:35 -0800470- fixed issue that prevented bin/ to be removed from the buildpath
471 when converting project.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800472
4730.1.4
474
Tor Norbye9f321db2011-01-10 19:45:35 -0800475- Changes in the Manifest, now properly trigger a new package of the
476 resources.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800477
4780.1.3
479
Tor Norbye9f321db2011-01-10 19:45:35 -0800480- Fixed the "fix project properties" action to remove old framework
481 libraries, just not add new ones.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800482
4830.1.2
484
Tor Norbye9f321db2011-01-10 19:45:35 -0800485- aidl builder. The Android Resources PreBuilder now also converts
486 aidl files into java files.
487- New Project wizard now allows to make Wallpaper activities instead
488 of gadgets (which are obsolete.)
489- Launch shortcuts. Right click in the package explorer allow you to
490 launch the application in debug or run mode directly without
491 creating launch configurations.
492- New project wizard and Project conversion now sets up the java doc
493 path for android.zip
494- Package builder now supports custom application assets placed in
495 assets/ (which is now created automatically by the New Project
496 Wizard).
497- New action: Android Tools > Fix Project Properties, in the package
498 explorer contextual menu. This allows you to fix the framework path
499 (and its javadoc path) in case you change the sdk location.
The Android Open Source Project55a2c712009-03-03 19:29:09 -0800500
5010.1.1
502
503- Fixed project convertor to add the framework library if missing.
504
5050.1.0
506
507- New project wizard.
508- Python script-generated project convertor.
509- Incremental builders.
510- XML validation for resource files.
511- Android Launch Configuration.