Legend
Legend

Reputation: 116810

Android: Is it possible to observe system calls?

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

Answers (2)

Joseph Garvin
Joseph Garvin

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

Faisal Abid
Faisal Abid

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

Related Questions