11/n: Enable CoexCoordinator advanced logic by default

Bug: 193089985
Test: adb shell dumpsys biometric
Change-Id: Icc77da6f8bfe299649369c212ef05fed571402b3
This commit is contained in:
Kevin Chyn
2021-07-23 13:02:30 -07:00
parent 7f2031b6f5
commit 19b68448f0

View File

@@ -1103,9 +1103,8 @@ public class BiometricService extends SystemService {
}
public boolean isAdvancedCoexLogicEnabled(Context context) {
return (Build.IS_USERDEBUG || Build.IS_ENG)
&& Settings.Secure.getInt(context.getContentResolver(),
CoexCoordinator.SETTING_ENABLE_NAME, 0) != 0;
return Settings.Secure.getInt(context.getContentResolver(),
CoexCoordinator.SETTING_ENABLE_NAME, 1) != 0;
}
}