aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge change Ieb4e722b into eclairAndroid (Google) Code Review2009-10-053-4/+6
|\ | | | | | | | | * changes: Add sdklib tests to the adt-tests Unit tests.
| * Add sdklib tests to the adt-tests Unit tests.Xavier Ducrohet2009-10-053-4/+6
| | | | | | | | Change-Id: Ieb4e722b1b5a29cef250e2cb5575a71e09f956c3
* | Merge change I90b4c0e7 into eclairAndroid (Google) Code Review2009-10-056-127/+316
|\ \ | |/ |/| | | | | * changes: Fix Eclipse sample tests.
| * Fix Eclipse sample tests.Brett Chabot2009-10-056-127/+316
| |
* | Merge change I7d761ffa into eclairAndroid (Google) Code Review2009-10-051-1/+1
|\ \ | | | | | | | | | | | | * changes: Fix best match resource selection when there's only one match.
| * | Fix best match resource selection when there's only one match.Xavier Ducrohet2009-10-051-1/+1
| | | | | | | | | | | | | | | | | | Was using the wrong index. Change-Id: I7d761ffa553f0aeec176a4752185dde238991e5e
* | | Only process XML files in layoutopt.Romain Guy2009-10-051-2/+2
| | | | | | | | | | | | Change-Id: I847109409601ccfbb10abff3b9972afdb3032821
* | | Merge change I5dfb2567 into eclairAndroid (Google) Code Review2009-10-059-8/+83
|\ \ \ | | | | | | | | | | | | | | | | * changes: Add new rules to layoutopt: UseCompoundDrawables and UselessLayout.
| * | | Add new rules to layoutopt: UseCompoundDrawables and UselessLayout.Romain Guy2009-10-059-8/+83
| |/ / | | | | | | | | | Change-Id: I5dfb2567d923da8442b1df1e703e4ebca6e9523b
* | | account manager api review changesFred Quintana2009-10-050-0/+0
|/ /
* | Merge change I8e4697e1 into eclairAndroid (Google) Code Review2009-10-0527-0/+1857
|\ \ | | | | | | | | | | | | * changes: New layout optimization tool. Run layoutopt on the command line.
| * | New layout optimization tool. Run layoutopt on the command line.Romain Guy2009-10-0527-0/+1857
| | | | | | | | | | | | Change-Id: I8e4697e19ca8a203dc8a41b464f7cb46d52184b0
* | | Merge change I69afafa4 into eclairAndroid (Google) Code Review2009-10-022-28/+220
|\ \ \ | | | | | | | | | | | | | | | | * changes: ADT: Create project from existing sample in New Project Wizard
| * | | ADT: Create project from existing sample in New Project WizardRaphael2009-10-022-28/+220
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The UI workflow: - user selects the new "Create project from existingsample" radio button - user selects an SDK target in the NPW - a popup is filled with all available samples This also fixes 2 edge cases: - when the selected sample contains a build|default.propertie that is a base of the currently selected SDK target, don't reset it. - when the user manually changes the project name or the app name for the sample, simply empty the fields and the next selected sample will recompute the adequate names. Any non-empty user input is never overridden. SDK BUG 2121819 Change-Id: I69afafa460b86942046ef6baca3d4c7ee7dbe97d
* | | Fix resource resolution in the graphical layout editor.Xavier Ducrohet2009-10-022-57/+56
| | | | | | | | | | | | | | | | | | | | | Resource with qualifiers take precedence over the ones without even if the qualifiers are not present on the requested configuration. Change-Id: I0d19889064e8031179ea6ee13c93a4198fe971fd
* | | Monintor resolution/size chooser dialogXavier Ducrohet2009-10-022-4/+160
| |/ |/| | | | | | | | | | | | | | | | | This simple dialog lets the user choose a screen size (from a fixed list) and a resolution (as returned by SWT's Display class). This is used by the AVD start options dialog to help users figure out the pixel density of their monitor. Change-Id: I3eec0e7fac850c82e836d2bc0291a491f29f516e
* | Emulator launch options dialog.Xavier Ducrohet2009-10-026-48/+590
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is displayed when clicking the Start button in the AVD manager. The dialog allows to easily scale the emulator to match an arbitrary screen size and to wipe the user data if needed. The required monitor dpi is computed using java.awt.Toolkit, but (at least on MacOS) it doesn't return the correct value, so it can be user supplied. It's stored at least while the app is running and if possible in the settings of the ADV/SDK Manager/Updater. The wipe-data and scale flags are stored and reused while the app keeps running as well. Change-Id: Ia2f3ff5f4de285a3d505c6914d6b89cc663be284
* | SDK: Fix CustomLocale to properly setup Language+CountryRaphael2009-10-020-0/+0
|/ | | | | | SDK BUG 2154263 Change-Id: I74db5bc237921ff6a6fd55664a2a3c62f544081b
* Revise template to match spec per jham.Jeff Sharkey2009-10-010-0/+0
|
* Ensure the version of 'awk' detected by host-setup.sh is used during the buildDavid 'Digit' Turner2009-10-010-0/+0
|
* Merge change Ia78a7753 into eclairAndroid (Google) Code Review2009-10-010-0/+0
|\ | | | | | | | | * changes: Remove bash-specific operator from build/host-setup.sh.
| * Remove bash-specific operator from build/host-setup.sh.David 'Digit' Turner2009-10-010-0/+0
| |
* | Fix Android Manifest parser.Xavier Ducrohet2009-10-011-9/+10
|/ | | | | | | While the test is in the java package as the parser, it's in a different plug-in and this prevents accessing package-protected methods. Change-Id: Ib17765095e4da518d62ee65cb9e1987d0e22be6e
* ADT Manifest Editor: Fix for uses-sdk dup that won't go away.Raphael2009-10-012-60/+87
| | | | | | | | | | | | It was a display issue only, meaning the actual XML node was being deleted but the Ui model was not updated properly. The actual cause is that this is a mandatory node, and mandatory nodes must stay as "fake nodes" in the Ui model. However only one such node needs to stay in the hierarchy. SDK BUG 2147112 Change-Id: I68e3d343bb95169865ad8dcad77004cbd51fafc3
* Merge change I8a575e49 into eclairAndroid (Google) Code Review2009-10-010-0/+0
|\ | | | | | | | | * changes: Fix CustomLocale to work with soft keyboard.
| * Fix CustomLocale to work with soft keyboard.Raphael2009-10-010-0/+0
| | | | | | | | | | | | SDK BUG 2154263 Change-Id: I8a575e49089ef2e6829e10749d796f6179330928
* | fix the buildXavier Ducrohet2009-10-010-0/+0
|/ | | | Change-Id: Ica519f7e0adbc9fd48792198221c01da3e27fab8
* Merge change Ie3124796 into eclairAndroid (Google) Code Review2009-10-010-0/+0
|\ | | | | | | | | * changes: Ignore adt/eclipse project files in CustomLocale
| * Ignore adt/eclipse project files in CustomLocaleRaphael2009-10-010-0/+0
| | | | | | | | | | | | SDK BUG 2154263 Change-Id: Ie31247964058f8140f2bd5184a8b7deac4ad0381
* | Load default GLE device profiles from the SDK.Xavier Ducrohet2009-09-302-80/+75
|/ | | | Change-Id: Ife64397692912f892ec81af8237ac31914830be9
* Merge change I77069a1e into eclairAndroid (Google) Code Review2009-10-0110-25/+175
|\ | | | | | | | | * changes: Replace icon template with new style and multiple densities.
| * Replace icon template with new style and multiple densities.Xavier Ducrohet2009-09-3010-25/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The icon in the templates of ADT was medium density only. I added new densities (high and low), as well as updated to the new Eclair style. Also added a version for Ant project. Updated ADT and sdklib to deal with creating new projects with all 3 icons. In case of Ant project, this is done only if the icons are present in the target platforms. For ADT, this is done only if the project target donut or later. Older project still have only one icon located in drawable/ Change-Id: I77069a1e4902ef395d490526aabc40a26e33d4ca
* | Add a copy button to the screenshot dialog.Xavier Ducrohet2009-09-301-13/+32
|/ | | | | | This adds the screenshot to the clipboard. Change-Id: I3509f2e5471588d749d67b70dd4d674cd0cd2057
* Merge change Ie905f9b5 into eclairAndroid (Google) Code Review2009-09-305-45/+121
|\ | | | | | | | | * changes: Add support for xdpi and ydpi in the device config for the GLE.
| * Add support for xdpi and ydpi in the device config for the GLE.Xavier Ducrohet2009-09-305-45/+121
| | | | | | | | Change-Id: Ie905f9b586ac5f58e40e86232fbafeaacf6a0c51
* | Merge change I343737c9 into eclairAndroid (Google) Code Review2009-09-300-0/+0
|\ \ | | | | | | | | | | | | * changes: Remove GAIA string
| * | Remove GAIA stringCostin Manolache2009-09-290-0/+0
| | |
* | | Add unit test for new keystore.Chung-yih Wang2009-09-300-0/+0
| |/ |/| | | | | | | + change the package path. + add continuous flag.
* | am fff9ff69: (-s ours) Merge the new Ant script rules and template from ↵Xavier Ducrohet2009-09-290-0/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Eclair (do not merge) Merge commit 'fff9ff696709e17ad73ae654e511907282bfc0fd' into eclair * commit 'fff9ff696709e17ad73ae654e511907282bfc0fd': Merge the new Ant script rules and template from Eclair (do not merge)
| * | Merge the new Ant script rules and template from Eclair (do not merge)Xavier Ducrohet2009-09-299-191/+456
| | |
* | | Merge change I95a34d28 into eclairAndroid (Google) Code Review2009-09-292-562/+626
|\ \ \ | | | | | | | | | | | | | | | | * changes: ADT XML String Refactoring: fix refusing to edit @+id/blah.
| * | | ADT XML String Refactoring: fix refusing to edit @+id/blah.Raphael2009-09-292-562/+626
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It correctly only refuses to edit @string/blah now. This CL also does a bit of refactoring; I extracted some methods and a class to make it a bit easier to read. BUG 2066460 Change-Id: I95a34d28d6390ab0cc075f05ea83ceec04993ae9
* | | | am 559f26b0: (-s ours) Move to 1.6_r2 (DO NOT MERGE)Xavier Ducrohet2009-09-290-0/+0
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | Merge commit '559f26b0a5e80da467d97d42280c22e5044d7f30' into eclair * commit '559f26b0a5e80da467d97d42280c22e5044d7f30': Move to 1.6_r2 (DO NOT MERGE)
| * | | Move to 1.6_r2 (DO NOT MERGE)Xavier Ducrohet2009-09-291-1/+1
| | | |
* | | | Merge change Ie022d478 into eclairAndroid (Google) Code Review2009-09-290-0/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: hdpi artwork for development/{apps,samples}.
| * | | | hdpi artwork for development/{apps,samples}.Daniel Sandler2009-09-290-0/+0
| | |_|/ | |/| | | | | | | | | | | | | | | | | | (drop dated 29-Sep-2009) Change-Id: Ie022d478ed4eafc641e475dad94f507a6c358595
* | | | Merge change I96ff4429 into eclairAndroid (Google) Code Review2009-09-293-61/+127
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Add support for 'android update test-project'.
| * | | | Add support for 'android update test-project'.Xavier Ducrohet2009-09-283-61/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is only to be used to update the location of the main project. To update other properties, 'update project' can be used. Change-Id: I96ff44295460c7e331953263abccea17108d5a70
* | | | | Merge change I2cdb052a into eclairAndroid (Google) Code Review2009-09-290-0/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Import testrunner changes from puppetmaster to keep them in sync.
| * | | | | Import testrunner changes from puppetmaster to keep them in sync.Brett Chabot2009-09-290-0/+0
| | | | | |