I was wondering how can I check the last application executed by the user in Android Phone (in terminal). I was checking with ps command but no timestamp is shown. What I want to get is the PID of the last application executed by the user.

Any suggestion?

Best regards

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I would just use

adb logcat 

and check for the last user application which was executed (the pid is in the brackets). I doubt there's an more reliable way to retrieve this information as there might a lot of background process (own pid, own user) involved or running without connection to the last user process.

link|improve this answer
Thanks for the info HefferWolf!! But how can I filter all the data generated by adb logcat in order to detect which one was the las application executed by the user? – Martin Solac Mar 11 '11 at 10:16
feedback

You should also note that for fetching such info you'll probably have to have a rooted phone

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.