Home | History | Annotate | only in /sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay
Up to higher level directory
NameDateSize
.classpath08-Oct-2015259
.project08-Oct-2015651
.settings/08-Oct-2015
build.properties08-Oct-201598
META-INF/08-Oct-2015
MODULE_LICENSE_EPL08-Oct-20150
NOTICE08-Oct-201511K
plugin.xml08-Oct-2015360
pom.xml08-Oct-2015677
README.txt08-Oct-2015764

README.txt

      1 This plugin provides a minor extension to the ADT plugin to support
      2 XML formatting via the "Source > Format" action on files.
      3 
      4 The reason the plugin package name starts with the word "overlay"
      5 instead of the normal "com.android.eclipse" package is that the plugin
      6 name *must* be alphabetically later than "org.eclipse". The reasons
      7 for this is detailed in issue
      8    http://code.google.com/p/android/issues/detail?id=20450
      9 but essentially the plugin registration to override the
     10 formatProcessor is processed in the alphabetical order of the plugin
     11 names, so the org.eclipse plugin would clobber the com.android.eclipse
     12 plugin. To work around this, the specific registration code was moved
     13 out to a separate plugin, but the formatter itself continues to live
     14 in ADT.
     15