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

Commit c8eeb85c authored by Kevin Chyn's avatar Kevin Chyn Committed by Automerger Merge Worker
Browse files

11/n: Enable CoexCoordinator advanced logic by default am: 19b68448 am: 9c909b22

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

Change-Id: I0ab022dd2490cafa18aef1d12c782de602f6111e
parents cd2fcae0 9c909b22
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;
        }
    }