I have get the api calls (external methods) of a apk file by androguard,and I also want to get some params value of sensitive apis. Are there some functions or methods for that?
or
Is there a way to get the parameter value of the API call from smali file traversal method?
example:
invoke-static {v0}, Lcom/xyz/sdk/impl/bd;->setWebContentsDebuggingEnabled(Z)V
How can I find the boolean value of the setWebContentsDebuggingEnabled API call?
I read the documentation that last value of the registers will hold the method parameter but can you provide some simple example?