Hello,
I'm trying to make an app debuggable by hooking android.os.Process.start() and modifying the debug flag value.
Also mentioned in this issue.
However, after being able to successfully hook the function, there is no call being intercepted to it when spawning an application.
My guess is that I am hooking the function too late (after the call is already made), but I'd like to hear your thoughts, and hopefully how to fix this.
here's a pastebin of my code
Hello,
I'm trying to make an app debuggable by hooking
android.os.Process.start()and modifying the debug flag value.Also mentioned in this issue.
However, after being able to successfully hook the function, there is no call being intercepted to it when spawning an application.
My guess is that I am hooking the function too late (after the call is already made), but I'd like to hear your thoughts, and hopefully how to fix this.
here's a pastebin of my code