proguard.annotation |
|
Java Source File Name | Type | Comment |
Keep.java | Annotation | This annotation specifies not to optimize or obfuscate the annotated class or
class member as an entry point. |
KeepApplication.java | Annotation | This annotation specifies to keep the annotated class as an application,
together with its a main method. |
KeepClassMemberNames.java | Annotation | This annotation specifies to keep all class members of the annotated class
from being optimized or obfuscated as entry points. |
KeepClassMembers.java | Annotation | This annotation specifies to keep all class members of the annotated class
from being shrunk, optimized, or obfuscated as entry points. |
KeepGettersSetters.java | Annotation | This annotation specifies to keep all getters and setters of the annotated
class from being shrunk, optimized, or obfuscated as entry points. |
KeepImplementations.java | Annotation | This annotation specifies to keep all implementations or extensions of the
annotated class as entry points. |
KeepName.java | Annotation | This annotation specifies not to optimize or obfuscate the annotated class or
class member as an entry point. |
KeepPublicClassMemberNames.java | Annotation | This annotation specifies to keep all public class members of the annotated
class from being optimized or obfuscated as entry points. |
KeepPublicClassMembers.java | Annotation | This annotation specifies to keep all public class members of the annotated
class from being shrunk, optimized, or obfuscated as entry points. |
KeepPublicGettersSetters.java | Annotation | This annotation specifies to keep all public getters and setters of the
annotated class from being shrunk, optimized, or obfuscated as entry points. |
KeepPublicImplementations.java | Annotation | This annotation specifies to keep all public implementations or extensions
of the annotated class as entry points. |
KeepPublicProtectedClassMemberNames.java | Annotation | This annotation specifies to keep all public or protected class members of
the annotated class from being optimized or obfuscated as entry points. |
KeepPublicProtectedClassMembers.java | Annotation | This annotation specifies to keep all public or protected class members of
the annotated class from being shrunk, optimized, or obfuscated as entry
points. |