allwinner_a64/android/sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay
2018-08-08 20:16:11 +08:00
..
.settings upload android base code part9 2018-08-08 20:16:11 +08:00
META-INF upload android base code part9 2018-08-08 20:16:11 +08:00
.classpath upload android base code part9 2018-08-08 20:16:11 +08:00
.project upload android base code part9 2018-08-08 20:16:11 +08:00
build.properties upload android base code part9 2018-08-08 20:16:11 +08:00
MODULE_LICENSE_EPL upload android base code part9 2018-08-08 20:16:11 +08:00
NOTICE upload android base code part9 2018-08-08 20:16:11 +08:00
plugin.xml upload android base code part9 2018-08-08 20:16:11 +08:00
pom.xml upload android base code part9 2018-08-08 20:16:11 +08:00
README.txt upload android base code part9 2018-08-08 20:16:11 +08:00

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.