Reputation: 116810
I was wondering if there is a way to observe the system calls in Android using a service... Is something like this remotely possible using Java or do I have to get down into native code...?
Thanks
Upvotes: 0
Views: 1599
Reputation: 21926
If you root the phone and install Debian, you should be able to install strace from the repositories. Debian install guide for Android here.
Upvotes: 2
Reputation: 9140
By system calls do you mean when the phone rings, wifi connects and etc? Those things are handled by Broadcast intents.
Upvotes: 0