Can someone please explain what is:
ActivityManager?
27854?
u0a66?
Can someone please explain what is:
ActivityManager?
27854?
u0a66?
ActivityManager?
ActivityManager
is one of the system services started by the system_server
process during Android boot up. ActivityManager
is responsible for managing the application components (Activities
, Services
, BroadcastReceivers
)
27854?
This is the Process Identifier (PID).
u0a66?
This is the User Identifier (UID). u0
means the system supports multiple users (0 is for "primary" user), a66
- is the application ID (66) set on its installation.
ActivityManager
started a process due to a call to start/bind the service, while "Start proc XXXXX: (package)/u0a66 for broadcast (Class)" means starting a process due to intent received by the broadcast receiver. –
Frap © 2022 - 2024 — McMap. All rights reserved.