Sujet : Re: What optional processes are running in background.
De : marion (at) *nospam* facts.com (Marion)
Groupes : comp.mobile.androidDate : 10. Jun 2025, 00:22:11
Autres entêtes
Organisation : BWH Usenet Archive (https://usenet.blueworldhosting.com)
Message-ID : <1027qb2$17br$1@nnrp.usenet.blueworldhosting.com>
References : 1 2 3 4 5
User-Agent : ForteAgent/8.00.32.1272
On Mon, 9 Jun 2025 13:45:50 -0700, David Oseas wrote :
Settings > Developer Options > Running Services > Background Processes
This will show active background processes, their RAM usage,
and it will allow you to stop background processes, if desired.
A good start, but on my Galaxy S23, it is far from a complete picture of
everything running in the background. Even when "Cached processes" is
selected, it only shows about 25% of the processes revealed by Simple
System Monitor.
Good point. Thanks for adding additional value. You're correct.
I just compared this output to that of bg processes & yes, it's different.
C:\> adb shell top
C:\> adb shell ps -A
C:\> adb shell ps -e
C:\> adb shell dumpsys activity services
C:\> adb shell dumpsys meminfo
For the most comprehensive list of all processes, 'adb shell ps -A' seems
top be the best bet. If we want to understand what services those processes
are running, 'adb shell dumpsys activity services' helps a lot. And for
memory consumption, 'adb shell dumpsys meminfo' seems to be a key command.