Just for Android, for example ActivityThread
could run in app process and system process, and ActivityManagerService
is running in another, how could I know which process the class is running in.
Take the following scenario for example, Context.startService
method is actually implemented by ActivityManagerService.startService
, I want to know the detail, so I want to debug ActivityManagerService
, but I don't know which process to debug, how can I know which process the ActivityManagerService
is running in, and other class as well, I want to know how, not what.
from How to know which process the class is running in?
No comments:
Post a Comment