24 lines
746 B
Java
24 lines
746 B
Java
/*
|
|
* Copyright (c) 2004-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
* file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
package com.facebook.jni.annotations;
|
|
|
|
import static java.lang.annotation.RetentionPolicy.CLASS;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Add this annotation to a class, method, or field to instruct Proguard to not strip it out.
|
|
*
|
|
* <p>This is useful for methods called via reflection that could appear as unused to Proguard.
|
|
*/
|
|
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR})
|
|
@Retention(CLASS)
|
|
public @interface DoNotStrip {}
|