I'm trying to hook a function that is called by another function in a native shared library which is called by the android application.
My call stack goes like the following:
- function
z()
inLibB
- function
y()
inLibA
- Android App loading
LibA
How do I go about this in frida?
I could successfully hook to direct functions of the android application but this nesting is preventing me from successfully hooking anything let alone locate the proper library/function name.