i have an answer about the way to trace all functions from Native Library. For example, its name is "libexample.so". There are no results by when searching for this module Process.findModuleByName("libexample.so")
.
That library dinamically loaded into the program and doesn't available from start.
The problem is that I need the very first function calls of this library. All I have is the address of that library, that i get while program runs.
How it could be done?
Thank you for answers.