XposedHooker should also target TYPE_USE

This commit is contained in:
LoveSy 2023-07-26 01:30:57 +08:00
parent 811c45551f
commit 74534aa0c1
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Target({ElementType.TYPE, ElementType.TYPE_USE})
public @interface XposedHooker {
}