Fix proguard rules

This commit is contained in:
LoveSy 2024-07-23 00:44:10 +08:00
parent 7b6727313c
commit 64e29bd657
No known key found for this signature in database
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
-keep class io.github.libxposed.** { *; }
-keepclassmembers,allowoptimization class ** implements io.github.libxposed.api.XposedInterface$Hooker {
public *** before(***);
public *** after(***);
public static *** before();
public static *** before(io.github.libxposed.api.XposedInterface$BeforeHookCallback);
public static void after();
public static void after(io.github.libxposed.api.XposedInterface$AfterHookCallback);
public static void after(io.github.libxposed.api.XposedInterface$AfterHookCallback, ***);
}