Check for application battery optimization status and open settings or disable it
This plugin is inspired from optimize_battery but with modern Android Gradle Plugin support.
BatteryOptimizer.isIgnoringBatteryOptimizations().then((onValue) {
setState(() {
if (onValue) {
// Igonring Battery Optimization
} else {
// App is under battery optimization
}
});
});
BatteryOptimizer.openBatteryOptimizationSettings()
BatteryOptimizer.stopOptimizingBatteryUsage();
This opens the battery optimization disable dialog.
Add the permission in Mainfest file
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
It uses the intent(ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS
). Which is not recommended unless its an excemtion case. Such as the applications main functionality needs the battery optimisation to be disabled.
Read more here : https://developer.android.com/training/monitoring-device-state/doze-standby#exemption-cases