@Retention(value=CLASS) @Target(value={PACKAGE,TYPE,ANNOTATION_TYPE,CONSTRUCTOR,METHOD,FIELD}) public @interface Keep
Example:
@Keep
public void foo() {
...
}
Copied from android.support.annotation.Keep
TODO: Add support annotation library as a dependency and use that.