Merge changes from topic "biometric-and-credential"

* changes:
  Always start AuthController
  Clean up biometric system server
This commit is contained in:
Kevin Chyn
2020-02-21 21:37:14 +00:00
committed by Android (Google) Code Review
24 changed files with 212 additions and 238 deletions

View File

@@ -1908,16 +1908,14 @@ public final class SystemServer {
t.traceEnd();
}
if (hasFeatureFace || hasFeatureIris || hasFeatureFingerprint) {
// Start this service after all biometric services.
t.traceBegin("StartBiometricService");
mSystemServiceManager.startService(BiometricService.class);
t.traceEnd();
// Start this service after all biometric services.
t.traceBegin("StartBiometricService");
mSystemServiceManager.startService(BiometricService.class);
t.traceEnd();
t.traceBegin("StartAuthService");
mSystemServiceManager.startService(AuthService.class);
t.traceEnd();
}
t.traceBegin("StartAuthService");
mSystemServiceManager.startService(AuthService.class);
t.traceEnd();
t.traceBegin("StartBackgroundDexOptService");