Merge "Add system service for accessing SystemConfig"

This commit is contained in:
Hall Liu
2020-01-20 21:34:28 +00:00
committed by Android (Google) Code Review
11 changed files with 233 additions and 1 deletions

View File

@@ -902,6 +902,11 @@ public final class SystemServer {
private void startCoreServices(@NonNull TimingsTraceAndSlog t) {
t.traceBegin("startCoreServices");
// Service for system config
t.traceBegin("StartSystemConfigService");
mSystemServiceManager.startService(SystemConfigService.class);
t.traceEnd();
t.traceBegin("StartBatteryService");
// Tracks the battery level. Requires LightService.
mSystemServiceManager.startService(BatteryService.class);