From f3d8b81d4b7ea8d0979480f9be966a08d5ad0b6d Mon Sep 17 00:00:00 2001 From: Nancy Zheng Date: Fri, 8 Jul 2016 12:55:48 -0700 Subject: Add WearWifiMediatorService to SystemServer. Bug: 28347905 Change-Id: I4218f908f83eb3a9fe3f75e5d6eaf312c652ba67 --- services/java/com/android/server/SystemServer.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index 37a9d5df6237..bc3c98d73fc2 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -157,6 +157,8 @@ public final class SystemServer { "com.google.android.clockwork.ThermalObserver"; private static final String WEAR_BLUETOOTH_SERVICE_CLASS = "com.google.android.clockwork.bluetooth.WearBluetoothService"; + private static final String WEAR_WIFI_MEDIATOR_SERVICE_CLASS = + "com.google.android.clockwork.wifi.WearWifiMediatorService"; private static final String WEAR_TIME_SERVICE_CLASS = "com.google.android.clockwork.time.WearTimeService"; private static final String ACCOUNT_SERVICE_CLASS = @@ -1157,6 +1159,7 @@ public final class SystemServer { if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_WATCH)) { mSystemServiceManager.startService(WEAR_BLUETOOTH_SERVICE_CLASS); + mSystemServiceManager.startService(WEAR_WIFI_MEDIATOR_SERVICE_CLASS); if (!disableNonCoreServices) { mSystemServiceManager.startService(WEAR_TIME_SERVICE_CLASS); } -- cgit v1.2.3-59-g8ed1b