Change signature for obfuscation
This commit is contained in:
parent
7ac42ebe4d
commit
bbdc6084b9
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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"),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue