Change signature for obfuscation

This commit is contained in:
LoveSy 2023-01-08 06:34:07 +08:00 committed by LoveSy
parent 7ac42ebe4d
commit bbdc6084b9
2 changed files with 2 additions and 2 deletions

View File

@ -15,5 +15,5 @@ public class DexParserBridge {
public static native void closeDex(long cookie); public static native void closeDex(long cookie);
@FastNative @FastNative
public static native void visitClass(long cookie, DexParser.ClassVisitor visitor, Class<DexParser.FieldVisitor> fieldVisitorClass, Class<DexParser.MethodVisitor> methodVisitorClass, Method classVisitMethod, Method fieldVisitMethod, Method methodVisitMethod, Method methodBodyVisitMethod, Method stopMethod); public static native void visitClass(long cookie, Object visitor, Class<DexParser.FieldVisitor> fieldVisitorClass, Class<DexParser.MethodVisitor> methodVisitorClass, Method classVisitMethod, Method fieldVisitMethod, Method methodVisitMethod, Method methodBodyVisitMethod, Method stopMethod);
} }

View File

@ -794,7 +794,7 @@ namespace lspd {
"(Ljava/nio/buffer/ByteBuffer;[J)Ljava/lang/Object;"), "(Ljava/nio/buffer/ByteBuffer;[J)Ljava/lang/Object;"),
LSP_NATIVE_METHOD(DexParserBridge, closeDex, "(J)V;"), LSP_NATIVE_METHOD(DexParserBridge, closeDex, "(J)V;"),
LSP_NATIVE_METHOD(DexParserBridge, visitClass, LSP_NATIVE_METHOD(DexParserBridge, visitClass,
"(JLio/github/libxposed/utils/DexParser$ClassVisitor;Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)V"), "(JLjava/lang/Object;Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)V"),
}; };