How do I find which service is running in the background on Android?

How do I find which service is running in the background on Android? similar way to enter service, .... Using adb or terminal on android device? Can I use the "top" or "ps" command?

Maybe I need to ask in a different way? Is the service presented as a single "process" then can we use the "ps" or "top" command to find it?

+2


a source to share


1 answer


If you are using an emulator or have a device connected, you can run adb with the "adb shell" from the command line, and you can run all those Linux files like top and ps.



+1


a source







All Articles