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

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

Change-Id: I0ab022dd2490cafa18aef1d12c782de602f6111e
This commit is contained in:
Kevin Chyn
2021-07-27 01:52:48 +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;
} }
} }