I'm trying to use Frida (Android 7 device - rooted emulator) according to the JavaScript API.
This is the current code:
Java.perform(function() {
var x = Java.use('com.x.myCustomClass.util')
console.log(x.functionIKnowExists) // will return function n() { [ecmascript code] }
}
However, while accessing functions, I get this error:
____
/ _ | Frida 12.6.12 - A world-class dynamic instrumentation toolkit
| (_| |
> _ | Commands:
/_/ |_| help -> Displays the help system
. . . . object? -> Display information about 'object'
. . . . exit/quit -> Exit
. . . .
. . . . More info at http://www.frida.re/docs/home/
Attaching...
function n() { [ecmascript code] }
How can I view the actual implementation (decompiled code) of of the function "functionIKnowExists()"
instead?