@Target(value=METHOD) @Retention(value=RUNTIME) public @interface Priority
SecurityManager is installed, a security exception might
be raised based on the specific policy implemented.
Remember also that, in order for the annotation to properly work at run time, you will need to
add the following rules to your Proguard file (if employing it for shrinking or obfuscation):
-keepattributes RuntimeVisibleAnnotations
-keepclassmembers class ** {
@com.github.dm.jrt.annotation.Priority *;
}
Created by davide-maestroni on 05/31/2015.| Modifier and Type | Required Element and Description |
|---|---|
int |
value
The priority value.
|