Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

1 Answer

up vote -1 down vote accepted

check for the Intent.ACTION_USER_PRESENT. see this link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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