Ignore Sense/Touchwiz power saving on L or higher.

This commit is contained in:
Unknown W. Brackets 2016-10-08 09:43:56 -07:00
parent 8b5693b4d7
commit a8d37a01e6

View File

@ -73,7 +73,7 @@ public class PowerSaveModeReceiver extends BroadcastReceiver {
private static void sendPowerSaving(final Context context) {
if (Build.VERSION.SDK_INT >= 21) {
isPowerSaving = getNativePowerSaving(context) || getExtraPowerSaving(context);
isPowerSaving = getNativePowerSaving(context);
} else {
isPowerSaving = getExtraPowerSaving(context);
}