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

Commit 127ecac1 authored by Robert Horvath's avatar Robert Horvath Committed by Android (Google) Code Review
Browse files

Merge "Enable Low Power Standby policy & standby ports features by default" into main

parents 77d867ba 2317f98b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1369,7 +1369,7 @@ public class LowPowerStandbyController {
         * Otherwise, returns false, and the default policy will be used.
         */
        public boolean enableCustomPolicy() {
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_POLICY, false);
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_POLICY, true);
        }

        /**
@@ -1377,7 +1377,7 @@ public class LowPowerStandbyController {
         * Otherwise, returns false, and {@link #getActiveStandbyPorts()} will always be empty.
         */
        public boolean enableStandbyPorts() {
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_STANDBY_PORTS, false);
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_STANDBY_PORTS, true);
        }

        /**