DisableFlagSecure/app/proguard-rules.pro

21 lines
976 B
Prolog
Raw Normal View History

2024-03-11 21:08:15 +08:00
-adaptresourcefilecontents META-INF/xposed/java_init.list
-keepattributes RuntimeVisibleAnnotations
-keep,allowobfuscation,allowoptimization public class * extends io.github.libxposed.api.XposedModule {
public <init>(...);
public void onPackageLoaded(...);
public void onSystemServerLoaded(...);
}
2024-07-29 11:03:43 +08:00
-keep,allowshrinking,allowoptimization,allowobfuscation class ** implements io.github.libxposed.api.XposedInterface$Hooker
-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, ***);
2024-03-11 21:08:15 +08:00
}
2021-02-03 16:36:24 +08:00
2023-11-23 14:49:54 +08:00
-repackageclasses
2024-03-11 21:08:15 +08:00
-allowaccessmodification