Home | History | Annotate | only in /development/tools/rmtypedefs
Up to higher level directory
NameDateSize
.gitignore24-Aug-201634
.idea/24-Aug-2016
Android.mk24-Aug-20161.4K
etc/24-Aug-2016
README.txt24-Aug-2016557
rmtypedefs.iml24-Aug-20162K
src/24-Aug-2016
test/24-Aug-2016

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