Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19b68448 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

11/n: Enable CoexCoordinator advanced logic by default

Bug: 193089985
Test: adb shell dumpsys biometric
Change-Id: Icc77da6f8bfe299649369c212ef05fed571402b3
parent 7f2031b6
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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;
        }
    }