I am trying to inspect what's happening in Android platform when I swipe to unlock the phone. For example, what intent has been emitted, which part of the Java API handles the authentication, how it dim the light etc.
I tried logcat. It does provide some logging information, but still, it's very limited. Attach source code to android gives a nice way to debug into android source code for the application developers write, however, I don't want to debug any application, but android platform code related to phone sleep, authentication and wake up.
What's the best way to achieve it?
Newbie in Android, thanks ahead!