I need an intent to "Don't optimize" settings page of ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS .
But when i change it to "Don't optimize and return , The settings are not saved . It will be still in the "Optimized" list
Device :one Plus 5 Os : Android 9.0
Code :
startActivityForResult(new Intent(Settings.ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS), 0);
Issue : Settings are not saved .
Also is there an intent available to "Battery optimized apps list ?"
Try this to request REQUEST_IGNORE_BATTERY_OPTIMIZATIONS.
Add this to Manifest
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />Use this function to request optimization.
It will ask user to exclude your app from battery optimization .