How to make adb shell ps list all processes in Android O?

be_good_do_good picture be_good_do_good · Jun 24, 2017 · Viewed 44.8k times · Source

adb shell ps not working in O android release

adb shell ps command in Android O release is listing only ps process information, but it is not listing all the processes information of all the process like it used to do it in earlier android releases

what is the command to list all the processes information in android O release?

Answer

be_good_do_good picture be_good_do_good · Jun 24, 2017

adb shell ps -A is listing all processes in android-8.0-O release.

I think Google has upgraded ps binary in this release.