Home | History | Annotate | only in /development/tools/rmtypedefs
Up to higher level directory
NameDateSize
.gitignore05-Oct-201734
.idea/05-Oct-2017
Android.mk05-Oct-20171.1K
etc/05-Oct-2017
README.txt05-Oct-2017557
rmtypedefs.iml05-Oct-20172K
src/05-Oct-2017
test/05-Oct-2017

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