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!

link|improve this question

feedback

1 Answer

up vote -1 down vote accepted

check for the Intent.ACTION_USER_PRESENT. see this link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.