OSDN Git Service

android-x86/sdk.git
12 years agoImprove indirect library dependency support.
Xavier Ducrohet [Fri, 14 Oct 2011 23:46:45 +0000 (16:46 -0700)]
Improve indirect library dependency support.

Previously with the following setup:
    Main app depends on Lib1, Lib2.
    Lib1 and Lib2 both depends on Lib3.
Lib3 would be compiled 3 times, as the main app would attempt
to build it and then Libr1, and Lib2 would do it too.

Of course it wasn't actually built 3 times. After the first time it would
do nothing, checking dependencies and do nothing. However, for projects
will a lot of libraries and a lot of indirect dependencies this could
slow down a lot compilations, as the build would spend its time checking
whether to build the same library many times.

This ensure that only the main project attempts to build all of its library
dependencies (direct and indirect), in the right order of course.
When libraries are built they are told (through the "only" target) to not
build their dependencies.

Change-Id: Ie80f32a96e3c473d897aca5d05bf6fe9ea086884

12 years agoAdd BuildConfig to ant SDK project.
Xavier Ducrohet [Fri, 14 Oct 2011 18:13:58 +0000 (11:13 -0700)]
Add BuildConfig to ant SDK project.

The BuildConfig class contains a single boolean constant
called DEBUG which is true only for debug/instrumented builds.

This allows developers to create debug only code that's automatically
stripped from release builds.

Also fixed some issues with dependency check for other tasks, notably
the aapt task that would always find new files due to not filtering
out files that are ignored by aapt itself (hidden files, version control
files, etc...)

Change-Id: I4391a87c064a185d6b337ca46e3a9f0e43c5174d

12 years agoMerge "Manifest XML completion of minimum SDK"
Tor Norbye [Thu, 13 Oct 2011 17:02:45 +0000 (10:02 -0700)]
Merge "Manifest XML completion of minimum SDK"

12 years agoMerge "Handle AAPT error messages for skipping files"
Tor Norbye [Thu, 13 Oct 2011 14:26:36 +0000 (07:26 -0700)]
Merge "Handle AAPT error messages for skipping files"

12 years agoHandle AAPT error messages for skipping files
Tor Norbye [Tue, 11 Oct 2011 00:45:54 +0000 (17:45 -0700)]
Handle AAPT error messages for skipping files

If the AAPT error parser encounters an error message it is unfamiliar
with, then it aborts out of the parser and just emits all the output
from aapt in the Console instead.

I just ran into a scenario where this happens if your project contains
an XML file with an invalid name, such as a layout whose name starts
with an underscore.

This changeset adds a regexp to recognize these errors such that the
other AAPT errors show up in the Problems view, and you can click to
jump to the offending file for the skipping error.

Change-Id: I884fdb6fdbdfcaa3adbef68bc96e722036e88996

12 years agoMerge "SDK Manager: Remove APPLICATION_MODAL from shell style."
Raphaël Moll [Wed, 12 Oct 2011 20:59:11 +0000 (13:59 -0700)]
Merge "SDK Manager: Remove APPLICATION_MODAL from shell style."

12 years agoSDK Manager: Remove APPLICATION_MODAL from shell style.
Siva Velusamy [Thu, 6 Oct 2011 00:04:55 +0000 (17:04 -0700)]
SDK Manager: Remove APPLICATION_MODAL from shell style.

Have APPLICATION_MODAL causes the log window to never have focus.
This patch has been tested only on Linux.

Updated by Raphael:
- Differentiate behavior for Linux.
- Also apply to the AVD manager standalone window.

Change-Id: Iff8461e26c3e36712083708969a781b9d5ed63c8

12 years agoMerge "Logcat autoscroll behavior update."
Siva Velusamy [Wed, 12 Oct 2011 18:30:56 +0000 (11:30 -0700)]
Merge "Logcat autoscroll behavior update."

12 years agoLogcat autoscroll behavior update.
Siva Velusamy [Wed, 12 Oct 2011 17:28:16 +0000 (10:28 -0700)]
Logcat autoscroll behavior update.

Rather than checking the position of the thumb every time entries
are added, we listen to the scroll bar being moved up or down by
the user.

In addition, also update the scrolling behavior whenever entries in
the table are selected. Auto scrolling will stop if anything but the
last entry is selected.

Change-Id: I7b32e9c42bc8e2ad01171b61a5a9ef09d8d0a7b1

12 years agoMerge "Improved RenderScript support in SDK build."
Xavier Ducrohet [Tue, 11 Oct 2011 17:22:24 +0000 (10:22 -0700)]
Merge "Improved RenderScript support in SDK build."

12 years agoMerge "SDK Manager: Prevent 'adb start-server' from blocking"
Raphael [Tue, 11 Oct 2011 16:41:13 +0000 (09:41 -0700)]
Merge "SDK Manager: Prevent 'adb start-server' from blocking"

12 years agoam 1639b002: (-s ours) SDK Manager: fix bug that prevents from installing pkg updates...
Raphael [Tue, 11 Oct 2011 16:17:33 +0000 (09:17 -0700)]
am 1639b002: (-s ours) SDK Manager: fix bug that prevents from installing pkg updates. Do not merge.

* commit '1639b002a3d2445a6ebf47ed3ccd4e94a4daa3e5':
  SDK Manager: fix bug that prevents from installing pkg updates. Do not merge.

12 years agoSDK Manager: fix bug that prevents from installing pkg updates. Do not merge.
Raphael [Fri, 7 Oct 2011 20:09:18 +0000 (13:09 -0700)]
SDK Manager: fix bug that prevents from installing pkg updates. Do not merge.

Purely an UI issue, the Install button is not enabled
correctly for updates, thus preventing users from updating.

Patch 2: changed to have the same code used for both
enabling the buttons and actually selecting what to install
or delete. That will avoid inconsistencies.

Also prevented against a few potential NPEs.

(cherry picked from commit 7f0366ad3128d4911517f351d79e1bbea326c862)

Change-Id: I6cf5117409b5b5c70042f93a8f18723383748174

12 years agoSDK Manager: Prevent 'adb start-server' from blocking
Raphael [Tue, 11 Oct 2011 00:25:42 +0000 (17:25 -0700)]
SDK Manager: Prevent 'adb start-server' from blocking

SDK Manager hangs on windows after it tries to stop
and restart ADB (e.g. when installing platform-tools).

It hangs when capturing the stdout/stderr pipes -- these
don't close automatically when the process has finished
and these are not interruptible streams.
One workaround is to not capture them, especially since
the output isn't really useful for the installer anyway.

Change-Id: I6554461dfffad2cc8ff0f1fe7d212fdee742e2e6

12 years agoSDK Manager: Display remote pkg revision.
Raphael [Tue, 11 Oct 2011 05:56:47 +0000 (22:56 -0700)]
SDK Manager: Display remote pkg revision.

Change-Id: I24b49b4b09a9cab8cb1ddd2eade78e9ea21cd867

12 years agoImproved RenderScript support in SDK build.
Xavier Ducrohet [Tue, 11 Oct 2011 00:53:21 +0000 (17:53 -0700)]
Improved RenderScript support in SDK build.

- renderscript output is now in bin/res/ instead of res/
- Ant build system properly handle dependencies to only recompile
  files that need it.

Change-Id: Ic2cd4487a26e7a7fcb0b475ee52fa0ccf8a07c0b

12 years agoSDK Manager: fix bug that prevents from installing pkg updates
Raphael [Fri, 7 Oct 2011 20:09:18 +0000 (13:09 -0700)]
SDK Manager: fix bug that prevents from installing pkg updates

Purely an UI issue, the Install button is not enabled
correctly for updates, thus preventing users from updating.

Patch 2: changed to have the same code used for both
enabling the buttons and actually selecting what to install
or delete. That will avoid inconsistencies.

Also prevented against a few potential NPEs.

Change-Id: I3d209fa4325ffc7624c503395834636b372e8e7e

12 years agoMerge "Remove non-actionable log statement."
Siva Velusamy [Mon, 10 Oct 2011 21:26:50 +0000 (14:26 -0700)]
Merge "Remove non-actionable log statement."

12 years agoRemove non-actionable log statement.
Siva Velusamy [Mon, 10 Oct 2011 21:25:44 +0000 (14:25 -0700)]
Remove non-actionable log statement.

Change-Id: I18064d048603c61a5f7d046bbb4cdb39181159de

12 years agoMerge "DDMS plugin: Indicate which missing files prevent it from starting"
Raphael [Mon, 10 Oct 2011 21:18:20 +0000 (14:18 -0700)]
Merge "DDMS plugin: Indicate which missing files prevent it from starting"

12 years agoMerge "SDK Manager: don't output XML parse errors to stderr"
Raphael [Mon, 10 Oct 2011 21:17:48 +0000 (14:17 -0700)]
Merge "SDK Manager: don't output XML parse errors to stderr"

12 years agoFix NPE when getCurrentDevice() == null.
Siva Velusamy [Mon, 10 Oct 2011 17:48:34 +0000 (10:48 -0700)]
Fix NPE when getCurrentDevice() == null.

Change-Id: I0f9eaf599b5ab22487408ea74d597ea61a22793f

12 years agoAdd a new implementation for symbol resolution.
Siva Velusamy [Sun, 9 Oct 2011 21:44:55 +0000 (14:44 -0700)]
Add a new implementation for symbol resolution.

The old implementation can still be used by setting the env variable
ANDROID_DDMS_OLD_SYMRESOLVER.

With the new one, all errors are collected, and displayed in the UI
at the end, grouping similar errors together.

Change-Id: Ibf2fa2122109b2eaf37579d65a3d0b18f475b436

12 years agoMerge "Make the new heap panel to be the default."
Siva Velusamy [Mon, 10 Oct 2011 17:12:30 +0000 (10:12 -0700)]
Merge "Make the new heap panel to be the default."

12 years agoMerge "Add a whitespace character when scanning across tokens."
Siva Velusamy [Mon, 10 Oct 2011 17:07:26 +0000 (10:07 -0700)]
Merge "Add a whitespace character when scanning across tokens."

12 years agoManifest XML completion of minimum SDK
Tor Norbye [Fri, 7 Oct 2011 02:50:48 +0000 (19:50 -0700)]
Manifest XML completion of minimum SDK

Change-Id: I9b3fa070e051bd16a9b9e81ffaaa1799594b62ab

12 years agoMake the new heap panel to be the default.
Siva Velusamy [Sun, 9 Oct 2011 23:21:14 +0000 (16:21 -0700)]
Make the new heap panel to be the default.

The old implementation can be used via the env var
ANDROID_DDMS_OLD_HEAP_PANEL=1

Change-Id: Iaf6320d3af73d94d0712e476f8a33d07349f415a

12 years agoAdd a whitespace character when scanning across tokens.
Siva Velusamy [Sun, 9 Oct 2011 23:07:53 +0000 (16:07 -0700)]
Add a whitespace character when scanning across tokens.

Change-Id: I6473c1e987c37fb69f808c26e2a7e0f451ab1d34

12 years agoModify validator to reject file resource names starting with _
Tor Norbye [Sun, 9 Oct 2011 17:16:16 +0000 (10:16 -0700)]
Modify validator to reject file resource names starting with _

Change-Id: I23cea24d7363597968d6602b5a056a59085b9c6c

12 years agoSDK Manager: don't output XML parse errors to stderr
Raphael [Sat, 8 Oct 2011 00:04:38 +0000 (17:04 -0700)]
SDK Manager: don't output XML parse errors to stderr

Change-Id: I6f82b040e8a2f91c24b7e75b3371f249b0b0f383

12 years agoSDK Manager: select just new or just updates.
Raphael [Fri, 7 Oct 2011 19:54:19 +0000 (12:54 -0700)]
SDK Manager: select just new or just updates.

This splits the "Select New/Updates" link in the
SDK Manager in 2 parts. Behavior is:
- at startup, the sdk manager selects both new and updates.
- one can click on deselect + select new to select
  just new packages.
- one can click on deselect + select updates to select
  just update packages.
- select does not select first, so clicking both new
  then update will produce the previous behavior.

SDK Bug: 20607

Change-Id: Ib861d78b746f4f3c7a8fce421c89ae8094339933

12 years agoDDMS plugin: Indicate which missing files prevent it from starting
Raphael [Fri, 7 Oct 2011 04:41:26 +0000 (21:41 -0700)]
DDMS plugin: Indicate which missing files prevent it from starting

DDMS plugin checks for 3 files when the tools location is set.
If any is missing, it won't connect to ADB. However there is
no way to know that exactly. This adds a log with the path
of the missing file.

Change-Id: If7b679342e6eef314470f63998cdb701e1e1920b

12 years agoam f3a1c511: (-s ours) Cherrypick e6c1198 from master for r14. do not merge.
Siva Velusamy [Fri, 7 Oct 2011 18:11:49 +0000 (11:11 -0700)]
am f3a1c511: (-s ours) Cherrypick e6c1198 from master for r14. do not merge.

* commit 'f3a1c511c69b5733256e12b5b659e69f006a77fb':
  Cherrypick e6c1198 from master for r14. do not merge.

12 years agoCherrypick e6c1198 from master for r14. do not merge.
Siva Velusamy [Fri, 7 Oct 2011 17:17:06 +0000 (10:17 -0700)]
Cherrypick e6c1198 from master for r14. do not merge.

Project location should not be set if it is in workspace.

If the project is created inside the workspace, then the project
description should not set the location. Otherwise the project
creation will fail with an error.

Change-Id: Id1b1a2e6f18d988659727953fad131a14c841dfb

12 years agoMerge "Project location should not be set if it is in workspace."
Xavier Ducrohet [Fri, 7 Oct 2011 18:00:02 +0000 (11:00 -0700)]
Merge "Project location should not be set if it is in workspace."

12 years agoProject location should not be set if it is in workspace.
Siva Velusamy [Fri, 7 Oct 2011 17:17:06 +0000 (10:17 -0700)]
Project location should not be set if it is in workspace.

If the project is created inside the workspace, then the project
description should not set the location. Otherwise the project
creation will fail with an error.

Change-Id: I4b1f63fa516b1fc0473c857656177316c15bf9ae

12 years agoam 3ef1b696: SDK: fix typo in atree
Raphael Moll [Fri, 7 Oct 2011 04:24:46 +0000 (21:24 -0700)]
am 3ef1b696: SDK: fix typo in atree

* commit '3ef1b6963686f191f58c001791d25defda873f02':
  SDK: fix typo in atree

12 years agoSDK: fix typo in atree
Raphael Moll [Fri, 7 Oct 2011 04:21:26 +0000 (21:21 -0700)]
SDK: fix typo in atree

it's hprof, not hprov. sigh.

Change-Id: I81a5cb107c18a94fa48c5643a57178407693b83c

12 years agoam 0afd6f63: (-s ours) Update GridModel to track GridLayout change. DO NOT MERGE.
Tor Norbye [Fri, 7 Oct 2011 03:00:25 +0000 (20:00 -0700)]
am 0afd6f63: (-s ours) Update GridModel to track GridLayout change. DO NOT MERGE.

* commit '0afd6f63d4b4b159e61d91af4f12370cf842d534':
  Update GridModel to track GridLayout change. DO NOT MERGE.

12 years agoUpdate GridModel to track GridLayout change. DO NOT MERGE.
Tor Norbye [Fri, 7 Oct 2011 02:49:49 +0000 (19:49 -0700)]
Update GridModel to track GridLayout change. DO NOT MERGE.

Change-Id: I1eda08e0be0e07e49dd23c437edd98ae63db4a9a

12 years agoMerge "Update GridModel to track GridLayout change"
Tor Norbye [Fri, 7 Oct 2011 02:57:39 +0000 (19:57 -0700)]
Merge "Update GridModel to track GridLayout change"

12 years agoUpdate GridModel to track GridLayout change
Tor Norbye [Fri, 7 Oct 2011 02:49:49 +0000 (19:49 -0700)]
Update GridModel to track GridLayout change

Change-Id: Idc4a9af22a54634d5999b3732713e705c0506df8

12 years agoam cde8474e: (-s ours) Cherrypick 26d92b from master for r14. do not merge.
Xavier Ducrohet [Fri, 7 Oct 2011 02:36:05 +0000 (19:36 -0700)]
am cde8474e: (-s ours) Cherrypick 26d92b from master for r14. do not merge.

* commit 'cde8474ebe87533a45c250297097e908b1f4e238':
  Cherrypick 26d92b from master for r14. do not merge.

12 years agoCherrypick 26d92b from master for r14. do not merge.
Xavier Ducrohet [Fri, 7 Oct 2011 02:23:33 +0000 (19:23 -0700)]
Cherrypick 26d92b from master for r14. do not merge.

Ant build didn't use -non-constant-id for libraries!

Change-Id: I6dffc58d68cf93bad73c419fbf38ee2d0be2dfb0

12 years agoMerge "Ant build didn't use -non-constant-id for libraries!"
Xavier Ducrohet [Fri, 7 Oct 2011 02:24:42 +0000 (19:24 -0700)]
Merge "Ant build didn't use -non-constant-id for libraries!"

12 years agoAnt build didn't use -non-constant-id for libraries!
Xavier Ducrohet [Fri, 7 Oct 2011 02:23:33 +0000 (19:23 -0700)]
Ant build didn't use -non-constant-id for libraries!

Change-Id: I966b8796008b87dd3e6101d8c6d09271e2621c52

12 years agoAdd logging in ddms.
Xavier Ducrohet [Fri, 7 Oct 2011 01:57:09 +0000 (18:57 -0700)]
Add logging in ddms.

Change-Id: I42508186ea339de1d97f0de2e801e6152311881a

12 years agoThe overlay plugin has no src folder.
Xavier Ducrohet [Fri, 7 Oct 2011 01:06:38 +0000 (18:06 -0700)]
The overlay plugin has no src folder.

Change-Id: I48cc8c3e707d63a11320d84b84e62c2a60f28233

12 years agoMinor refactor: keep sizes of snapshot ArrayList's in sync.
Siva Velusamy [Thu, 6 Oct 2011 18:59:55 +0000 (11:59 -0700)]
Minor refactor: keep sizes of snapshot ArrayList's in sync.

Change-Id: I30aef911df1146ff9a64c4d08c4371c2937d4e94

12 years agoMerge "Add support for importing saved heap data."
Siva Velusamy [Thu, 6 Oct 2011 18:37:35 +0000 (11:37 -0700)]
Merge "Add support for importing saved heap data."

12 years agoMerge "Fix Copy/Paste enablement"
Tor Norbye [Thu, 6 Oct 2011 18:36:36 +0000 (11:36 -0700)]
Merge "Fix Copy/Paste enablement"

12 years agoAdd support for importing saved heap data.
Siva Velusamy [Thu, 6 Oct 2011 16:35:33 +0000 (09:35 -0700)]
Add support for importing saved heap data.

Change-Id: I8552af1754f5093dcdb156f7f81e3beef776835a

12 years agoModel diff snapshot as a subtype of a regular snapshot.
Siva Velusamy [Fri, 30 Sep 2011 20:55:31 +0000 (13:55 -0700)]
Model diff snapshot as a subtype of a regular snapshot.

Change-Id: Ic701255c586530214b51a1553b66aa60c6c7b538

12 years agoFix Copy/Paste enablement
Tor Norbye [Thu, 6 Oct 2011 16:59:12 +0000 (09:59 -0700)]
Fix Copy/Paste enablement

This changeset fixes a couple of cases where the Copy/Paste actions
would not be enabled:

* When switching active tabs
* After running some other actions

Change-Id: I03df6fa91641ce722cb7bac615fc73342c77f586

12 years agoFix NPE: for some properties, description was null.
Siva Velusamy [Wed, 5 Oct 2011 23:02:31 +0000 (16:02 -0700)]
Fix NPE: for some properties, description was null.

See http://code.google.com/p/android/issues/detail?id=20447

Change-Id: I7db8f16b4027a9f4582c4a70bf8ad1c048ae7006

12 years agoam 6e805fb2: (-s ours) 20542: Contextual prop menu doesn\'t work well for textStyle...
Tor Norbye [Wed, 5 Oct 2011 22:29:58 +0000 (15:29 -0700)]
am 6e805fb2: (-s ours) 20542: Contextual prop menu doesn\'t work well for textStyle. DO NOT MERGE.

* commit '6e805fb2b209a2d346fa561ad02e8f67de70684a':
  20542: Contextual prop menu doesn't work well for textStyle. DO NOT MERGE.

12 years ago20542: Contextual prop menu doesn't work well for textStyle. DO NOT MERGE.
Tor Norbye [Wed, 5 Oct 2011 15:46:19 +0000 (08:46 -0700)]
20542: Contextual prop menu doesn't work well for textStyle. DO NOT MERGE.

Change-Id: I6092924b63448b9700ebe5906fab87f11520e27f

12 years agoMerge "20542: Contextual prop menu doesn't work well for textStyle"
Tor Norbye [Wed, 5 Oct 2011 21:24:05 +0000 (14:24 -0700)]
Merge "20542: Contextual prop menu doesn't work well for textStyle"

12 years agoam 68ce843e: (-s ours) SDK Manager: fix handling of source URLs. Do not merge.
Raphael [Wed, 5 Oct 2011 20:56:14 +0000 (13:56 -0700)]
am 68ce843e: (-s ours) SDK Manager: fix handling of source URLs. Do not merge.

* commit '68ce843e28c93465c48db84de09821347cdc8f6a':
  SDK Manager: fix handling of source URLs. Do not merge.

12 years agoSDK Manager: fix handling of source URLs. Do not merge.
Raphael [Wed, 5 Oct 2011 20:36:29 +0000 (13:36 -0700)]
SDK Manager: fix handling of source URLs. Do not merge.

This changes how source URLs are handled. Packages
from different sources were previously treated as
separate if the packages were the same (e.g. same
platform API) but the source URLs were different.

Instead this checks the hostname+domain name of the URL
is different, as well as the type of the source (that
is a sdk repository vs addon repository).

(cherry picked from commit d66d4b7804ce5585bed335168a0c7f3f178a11b0)

Change-Id: Ic127c4111e5028d467ad89c987c5f39cb8f8e8d7

12 years agoMerge "SDK Manager: fix handling of source URLs"
Raphael [Wed, 5 Oct 2011 20:53:42 +0000 (13:53 -0700)]
Merge "SDK Manager: fix handling of source URLs"

12 years agoSDK Manager: fix handling of source URLs
Raphael [Wed, 5 Oct 2011 20:36:29 +0000 (13:36 -0700)]
SDK Manager: fix handling of source URLs

This changes how source URLs are handled. Packages
from different sources were previously treated as
separate if the packages were the same (e.g. same
platform API) but the source URLs were different.

Instead this checks the hostname+domain name of the URL
is different, as well as the type of the source (that
is a sdk repository vs addon repository).

Change-Id: I5ba133cd0dc984528bf696aef77d00cd9d31ed9c

12 years agoam d55b705d: (-s ours) Add a preference to turn on/off auto monitoring logcat. DO...
Siva Velusamy [Wed, 5 Oct 2011 18:56:47 +0000 (11:56 -0700)]
am d55b705d: (-s ours) Add a preference to turn on/off auto monitoring logcat. DO NOT MERGE.

* commit 'd55b705d33316e05abfc23cec34708307a4d226e':
  Add a preference to turn on/off auto monitoring logcat. DO NOT MERGE.

12 years agoAdd a preference to turn on/off auto monitoring logcat. DO NOT MERGE.
Siva Velusamy [Tue, 4 Oct 2011 22:27:20 +0000 (15:27 -0700)]
Add a preference to turn on/off auto monitoring logcat. DO NOT MERGE.

Change-Id: I30174344cd5909e3de773b30cac711dd4f609f87

12 years agoam ce286143: (-s ours) Formatting fix: ensure no double blank new lines between eleme...
Tor Norbye [Wed, 5 Oct 2011 18:26:38 +0000 (11:26 -0700)]
am ce286143: (-s ours) Formatting fix: ensure no double blank new lines between elements. DO NOT MERGE.

* commit 'ce286143d5a1fc448205f3c905a00de4dc943d9a':
  Formatting fix: ensure no double blank new lines between elements. DO NOT MERGE.

12 years agoam 87164363: (-s ours) Look up space width from settings instead of hardcoded to...
Tor Norbye [Wed, 5 Oct 2011 18:26:38 +0000 (11:26 -0700)]
am 87164363: (-s ours) Look up space width from settings instead of hardcoded to 4. DO NOT MERGE.

* commit '87164363780f84aba2322bf55141628fd4621740':
  Look up space width from settings instead of hardcoded to 4. DO NOT MERGE.

12 years agoam 6ede5b20: (-s ours) Fix XML formatting from outside the editor (Source > Format...
Tor Norbye [Wed, 5 Oct 2011 18:24:32 +0000 (11:24 -0700)]
am 6ede5b20: (-s ours) Fix XML formatting from outside the editor (Source > Format). DO NOT MERGE.

* commit '6ede5b20916fcdca7be60facf4592d302772d0e7':
  Fix XML formatting from outside the editor (Source > Format). DO NOT MERGE.

12 years agoFormatting fix: ensure no double blank new lines between elements. DO NOT MERGE.
Tor Norbye [Tue, 4 Oct 2011 16:42:44 +0000 (09:42 -0700)]
Formatting fix: ensure no double blank new lines between elements. DO NOT MERGE.

Change-Id: I2a03e12adbf4a286114766c7d679cb7b65d3e92e

12 years agoLook up space width from settings instead of hardcoded to 4. DO NOT MERGE.
Tor Norbye [Mon, 3 Oct 2011 21:31:11 +0000 (14:31 -0700)]
Look up space width from settings instead of hardcoded to 4. DO NOT MERGE.

Change-Id: Id801b75f3a9ea494757e5846812ca568f9a337a3

12 years agoFix XML formatting from outside the editor (Source > Format). DO NOT MERGE.
Tor Norbye [Sat, 1 Oct 2011 04:01:06 +0000 (21:01 -0700)]
Fix XML formatting from outside the editor (Source > Format). DO NOT MERGE.

This changeset fixes this issue:

20450: Source->Format for XML files in Project Explorer in 14-preview
       applies old XML rules instead of new Android-aware ones

Basically, the Eclipse XML support does not consult the
StructuredTextViewerConfigurationXML configuration when formatting
files.  To work around this, this changeset overrides the format
processor defined for XML files and redirects to the ADT custom
formatter when the option to use a custom formatter is set.

Unfortunately, setting the formatProcessor in the ADT plugin does not
work, because it turns out that the WTP code to process layer
registrations processes plugins in alphabetical order of plugin names
(rather than say plugin dependency order), and as a result, the WTP
registration is processed later than the ADT one (because org.eclipse
> com.android) and it clobbers our registration.

To work around this, this changeset adds a *new* plugin, an overlay
for ADT which is named "overlay.com.android.eclipse.(etc)" which sorts
alphabetically later than org.eclipse. The plugin is basically empty
(it just provides a registration of the ADT format processor), and it
is registered as just a part of the ADT plugin so it should not be
exposed to users directly.

Change-Id: I05c617ca8e879d2a46de9def9f97f3f7a79884ce

12 years agoMerge "Add a preference to turn on/off auto monitoring logcat."
Siva Velusamy [Wed, 5 Oct 2011 18:03:59 +0000 (11:03 -0700)]
Merge "Add a preference to turn on/off auto monitoring logcat."

12 years agoAdd a preference to turn on/off auto monitoring logcat.
Siva Velusamy [Tue, 4 Oct 2011 22:27:20 +0000 (15:27 -0700)]
Add a preference to turn on/off auto monitoring logcat.

Change-Id: Ia2f02cbb02a89df6f665739427d842d6826a61cd

12 years ago20542: Contextual prop menu doesn't work well for textStyle
Tor Norbye [Wed, 5 Oct 2011 15:46:19 +0000 (08:46 -0700)]
20542: Contextual prop menu doesn't work well for textStyle

Change-Id: I34769f28848cd4618611db1a18f719466d3b1c1e

12 years agoam 644764ce: (-s ours) SDK: fix SdkManager class not releasing FileInputStream. Do...
Raphael [Wed, 5 Oct 2011 07:02:16 +0000 (00:02 -0700)]
am 644764ce: (-s ours) SDK: fix SdkManager class not releasing FileInputStream. Do not merge.

* commit '644764ce5452f9534aedf94857055a361f97e6f3':
  SDK: fix SdkManager class not releasing FileInputStream. Do not merge.

12 years agoam e75843be: (-s ours) SDK Manager: Fix NPE when deleting local archive. Do not merge.
Raphael [Wed, 5 Oct 2011 07:02:15 +0000 (00:02 -0700)]
am e75843be: (-s ours) SDK Manager: Fix NPE when deleting local archive. Do not merge.

* commit 'e75843be78e31ece5d30ec8a6cc51dad45d6d9cb':
  SDK Manager: Fix NPE when deleting local archive. Do not merge.

12 years agoam 642999bd: (-s ours) SDK: change SDK_TEST_URLS behavior. Do not merge.
Raphael [Wed, 5 Oct 2011 07:02:14 +0000 (00:02 -0700)]
am 642999bd: (-s ours) SDK: change SDK_TEST_URLS behavior. Do not merge.

* commit '642999bdbade5a877743381a3fc9e4193c90a38f':
  SDK: change SDK_TEST_URLS behavior. Do not merge.

12 years agoSDK: fix SdkManager class not releasing FileInputStream. Do not merge.
Raphael [Wed, 5 Oct 2011 06:39:57 +0000 (23:39 -0700)]
SDK: fix SdkManager class not releasing FileInputStream. Do not merge.

In various parts of the code base, I see code that creates
a FileInputStrea and never closes it. Unfortunately on
Windows that means the file will stay locked for as long
as the java process is alive.

In this case the SdkManager wasn't closing to input streams
which makes the source.properties files locked, and thus
it makes it impossible to upgrade/delete the corresponding
packages.

There are more occurences of this elsewhere in the code.

(cherry picked from commit 4c7bf6fe4dbf06f43d86b639ce5144ffeff7a626)

Change-Id: I36ad68a216b99fb471b941cb4ccdc88cd3bfad3b

12 years agoSDK Manager: Fix NPE when deleting local archive. Do not merge.
Raphael [Wed, 5 Oct 2011 06:31:35 +0000 (23:31 -0700)]
SDK Manager: Fix NPE when deleting local archive. Do not merge.

Properly enforce that all local archive should have
an actual installation path to be considered local.

This was missing in the system image and the source
archives introduced last week.

(cherry picked from commit 903ae4af34664fb8ffffa7a86e907814f860dab1)

Change-Id: I7265bf8460acb5c9ff5c9f1df6770b82e3b3e2f8

12 years agoSDK: change SDK_TEST_URLS behavior. Do not merge.
Raphael [Mon, 3 Oct 2011 22:34:45 +0000 (15:34 -0700)]
SDK: change SDK_TEST_URLS behavior. Do not merge.

When SDK_TEST_URLS is set, it prevents the default
sources from being loaded. This makes it easier to
test just a new site.

(cherry picked from commit 70164aa4ebb8f3186e58f922ad6b7d64f28bed01)

Change-Id: Ic9fc4f70de5993f056ebe860359a0cfa615a074b

12 years agoSDK: fix SdkManager class not releasing FileInputStream
Raphael [Wed, 5 Oct 2011 06:39:57 +0000 (23:39 -0700)]
SDK: fix SdkManager class not releasing FileInputStream

In various parts of the code base, I see code that creates
a FileInputStrea and never closes it. Unfortunately on
Windows that means the file will stay locked for as long
as the java process is alive.

In this case the SdkManager wasn't closing to input streams
which makes the source.properties files locked, and thus
it makes it impossible to upgrade/delete the corresponding
packages.

There are more occurences of this elsewhere in the code.

Change-Id: I9f0a854b210411757eee8b4ebf8308b059206542

12 years agoSDK Manager: Fix NPE when deleting local archive
Raphael [Wed, 5 Oct 2011 06:31:35 +0000 (23:31 -0700)]
SDK Manager: Fix NPE when deleting local archive

Properly enforce that all local archive should have
an actual installation path to be considered local.

This was missing in the system image and the source
archives introduced last week.

Change-Id: I3e4abd3c4136c9be73061e207e42e2d3cc22ca8b

12 years agoam ead5c918: Merge "SDK: fix typo in android.bat" into tools_r14
Raphael Moll [Wed, 5 Oct 2011 05:17:46 +0000 (22:17 -0700)]
am ead5c918: Merge "SDK: fix typo in android.bat" into tools_r14

* commit 'ead5c91879ab9a4b02f87da9134d44aaef5c1b8a':
  SDK: fix typo in android.bat

12 years agoMerge "SDK: fix typo in android.bat" into tools_r14
Raphael Moll [Wed, 5 Oct 2011 05:16:16 +0000 (22:16 -0700)]
Merge "SDK: fix typo in android.bat" into tools_r14

12 years agoSDK: fix typo in android.bat
Raphael Moll [Wed, 5 Oct 2011 05:13:02 +0000 (22:13 -0700)]
SDK: fix typo in android.bat

This prevents httpcore from being copied correctly.

Change-Id: I28d6b4020e854cbe914fd418e51e6a53e7c5444f

12 years agoam 6aa7a7e3: (-s ours) Cherrypick 6a5504 from master. do not merge.
Xavier Ducrohet [Tue, 4 Oct 2011 22:57:36 +0000 (15:57 -0700)]
am 6aa7a7e3: (-s ours) Cherrypick 6a5504 from  do not merge.

* commit '6aa7a7e3ea2e2ba8ab3558134f0e5d81c59326a2':
  Cherrypick 6a5504 from master. do not merge.

12 years agoCherrypick 6a5504 from master. do not merge.
Xavier Ducrohet [Tue, 4 Oct 2011 20:32:24 +0000 (13:32 -0700)]
Cherrypick 6a5504 from master. do not merge.

Make source.prop more important than build.prop when parsing platforms.

Change-Id: I126d4ed06fd1aa5125add58c17c3cebc4ec6b780

12 years agoMerge "Make source.prop more important than build.prop when parsing platforms."
Xavier Ducrohet [Tue, 4 Oct 2011 22:46:28 +0000 (15:46 -0700)]
Merge "Make source.prop more important than build.prop when parsing platforms."

12 years agoam a327cc8f: (-s ours) SDK: use repository-N.xml by default. Do not merge.
Raphael [Tue, 4 Oct 2011 22:42:29 +0000 (15:42 -0700)]
am a327cc8f: (-s ours) SDK: use repository-N.xml by default. Do not merge.

* commit 'a327cc8faf81577a0a6342af1d8a990cd7851a20':
  SDK: use repository-N.xml by default. Do not merge.

12 years agoam 9f9462f5: (-s ours) SDK: Use a different repository-N.xml for updating. Do not...
Raphael [Tue, 4 Oct 2011 22:42:29 +0000 (15:42 -0700)]
am 9f9462f5: (-s ours) SDK: Use a different repository-N.xml for updating. Do not merge.

* commit '9f9462f5504126529799c3bbfe1aaa1968c3064a':
  SDK: Use a different repository-N.xml for updating. Do not merge.

12 years agoam 53c797d8: (-s ours) SDK: revert c649a334 and fix missing \n properly. Do not merge.
Raphael [Tue, 4 Oct 2011 22:42:28 +0000 (15:42 -0700)]
am 53c797d8: (-s ours) SDK: revert c649a334 and fix missing \n properly. Do not merge.

* commit '53c797d8d8da1fbfd6fe7606c590a4cfdb61a2fc':
  SDK: revert c649a334 and fix missing \n properly. Do not merge.

12 years agoSDK: use repository-N.xml by default. Do not merge.
Raphael [Tue, 4 Oct 2011 22:33:15 +0000 (15:33 -0700)]
SDK: use repository-N.xml by default. Do not merge.

(This is part of Change I566b6945 but I had forgotten
to amend & upload, grrr.)

(cherry picked from commit 46b86398f7287cbdc88a15f9f6a2418ba29a7dbc)

Change-Id: I71ad810ac2ddbd11ece7f8e5afea22740a52100f

12 years agoSDK: Use a different repository-N.xml for updating. Do not merge.
Raphael [Tue, 4 Oct 2011 19:54:37 +0000 (12:54 -0700)]
SDK: Use a different repository-N.xml for updating. Do not merge.

(cherry picked from commit 8f4710850b3a01d6e5f1188440c59d6999646858)

Change-Id: I5d0c733267f04e4ad386ae3ae6853da2ecf9de15

12 years agoMerge "SDK: use repository-N.xml by default."
Raphael [Tue, 4 Oct 2011 22:35:30 +0000 (15:35 -0700)]
Merge "SDK: use repository-N.xml by default."

12 years agoSDK: use repository-N.xml by default.
Raphael [Tue, 4 Oct 2011 22:33:15 +0000 (15:33 -0700)]
SDK: use repository-N.xml by default.

(This is part of Change I566b6945 but I had forgotten
to amend & upload, grrr.)

Change-Id: Ic494179481346a2eda0f56327ddac0f123bf4538

12 years agoMerge "SDK: Use a different repository-N.xml for updating."
Raphael [Tue, 4 Oct 2011 22:30:16 +0000 (15:30 -0700)]
Merge "SDK: Use a different repository-N.xml for updating."

12 years agoSDK: revert c649a334 and fix missing \n properly. Do not merge.
Raphael [Tue, 4 Oct 2011 20:25:25 +0000 (13:25 -0700)]
SDK: revert c649a334 and fix missing \n properly. Do not merge.

(cherry picked from commit b4ea99769f2bc149ac3a3fef77c49b7b4b83fe90)

Change-Id: Ifee9c7706f29f8ab2968c9277bdd293182df0900

12 years agoMerge "SDK: revert c649a334 and fix missing \n properly."
Raphael [Tue, 4 Oct 2011 22:04:46 +0000 (15:04 -0700)]
Merge "SDK: revert c649a334 and fix missing \n properly."

12 years agoSDK: Use a different repository-N.xml for updating.
Raphael [Tue, 4 Oct 2011 19:54:37 +0000 (12:54 -0700)]
SDK: Use a different repository-N.xml for updating.

Change-Id: I566b6945b7d31c3bfe52b834014beb3f37a098d8

12 years agoFix ADT build
Raphael [Tue, 4 Oct 2011 20:56:46 +0000 (13:56 -0700)]
Fix ADT build

Change-Id: If0411f65bb523e5b26d53c620df666937f8467ca

12 years agoMake source.prop more important than build.prop when parsing platforms.
Xavier Ducrohet [Tue, 4 Oct 2011 20:32:24 +0000 (13:32 -0700)]
Make source.prop more important than build.prop when parsing platforms.

Change-Id: I715a7503a7be2b28cd89bd441b8cbb5ee620ccac