v0.0.4optimize_battery
檢查電池優化狀態並打開設定或停用它
37喜歡 797近 30 天下載160Pub 分數
Android
用於檢查電池優化狀態、開啟優化設定並停用優化的 Flutter 外掛程式。
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
Check for application battery optimization status and open settings or disable it
OptimizeBattery.isIgnoringBatteryOptimizations().then((onValue) {
setState(() {
if (onValue) {
// Igonring Battery Optimization
} else {
// App is under battery optimization
}
});
});
OptimizeBattery.openBatteryOptimizationSettings()
OptimizeBattery.stopOptimizingBatteryUsage();
This opens the battery optimization disable dialog.
Example
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
This plugin is inspired from battery_optimization but with supporting Null safety and Android V2 embedding