Java.use('类名').class.getDeclaredMethods().forEach(function (method) {
var methodName = method.toString();
console.log("method name = " + methodName);
try {
// .. hook here
} catch (e) {
console.error(methodName, e);
}
});
标签:methodName,console,类下,frida,method,模板
From: https://www.cnblogs.com/pythonywy/p/16625336.html