[AOSP] ActivityManager and ActivityManagerService
Lifecycle of ActivityManagerService Startup The lifecycle of ActivityManagerService begins with the following call in SystemServer. startBootstrapServices(){ […] traceBeginAndSlog(“StartActivityManager”); mActivityManagerService = mSystemServiceManager.startService( ActivityManagerService.Lifecycle.class).getService() } source: : 510 Some of the core Services also where instantiated there and therefore belong to that…