Home | History | Annotate | only in /development/tools/rmtypedefs
Up to higher level directory
NameDateSize
.gitignore03-Dec-201434
.idea/03-Dec-2014
Android.mk03-Dec-20141.5K
etc/03-Dec-2014
README.txt03-Dec-2014557
rmtypedefs.iml03-Dec-20142K
src/03-Dec-2014
test/03-Dec-2014

README.txt

      1 Android TypeDef Remover 1.0
      2 
      3 This utility finds and removes all .class files that have been
      4 annotated with the @IntDef annotation (android.annotations.IntDef) or
      5 the @StringDef annotation (android.annotations.StringDef).
      6 
      7 It also makes sure that these annotations have source level retention
      8 (@Retention(RetentionPolicy.SOURCE)), since otherwise uses of the
      9 typedef will appear in .class files as well.
     10 
     11 This is intended to be used during the build to strip out any typedef
     12 annotation classes, since these are not needed (or desirable) in the
     13 system image.
     14