aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt b/eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt
new file mode 100644
index 000000000..7b7f0d191
--- /dev/null
+++ b/eclipse/plugins/com.android.ide.eclipse.adt.overlay/README.txt
@@ -0,0 +1,14 @@
+This plugin provides a minor extension to the ADT plugin to support
+XML formatting via the "Source > Format" action on files.
+
+The reason the plugin package name starts with the word "overlay"
+instead of the normal "com.android.eclipse" package is that the plugin
+name *must* be alphabetically later than "org.eclipse". The reasons
+for this is detailed in issue
+ http://code.google.com/p/android/issues/detail?id=20450
+but essentially the plugin registration to override the
+formatProcessor is processed in the alphabetical order of the plugin
+names, so the org.eclipse plugin would clobber the com.android.eclipse
+plugin. To work around this, the specific registration code was moved
+out to a separate plugin, but the formatter itself continues to live
+in ADT.