11/n: Enable CoexCoordinator advanced logic by default am: 19b68448f0

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15377752

Change-Id: Ifa321ed3ec190abaa7333097cddb3552e96dfe21
This commit is contained in:
Kevin Chyn
2021-07-26 18:28:28 +00:00
committed by Automerger Merge Worker

View File

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