Merge "Do not stop idmap2d after OMS initialization" into qt-r1-dev

am: 3186b40edf

Change-Id: I0374997faf945a2cd60179cf1c35a7fbcd255285
This commit is contained in:
Ryan Mitchell
2019-08-16 13:11:37 -07:00
committed by android-build-merger
2 changed files with 2 additions and 3 deletions

View File

@@ -129,11 +129,11 @@ class IdmapDaemon {
}
}
static void startIdmapService() {
private static void startIdmapService() {
SystemProperties.set("ctl.start", IDMAP_DAEMON);
}
static void stopIdmapService() {
private static void stopIdmapService() {
SystemProperties.set("ctl.stop", IDMAP_DAEMON);
}

View File

@@ -262,7 +262,6 @@ public final class OverlayManagerService extends SystemService {
initIfNeeded();
onSwitchUser(UserHandle.USER_SYSTEM);
IdmapDaemon.stopIdmapService();
publishBinderService(Context.OVERLAY_SERVICE, mService);
publishLocalService(OverlayManagerService.class, this);