I need to know if there is any battery saving policy with the whole system or specific to my app.
I found out that you can check if the Power Saving Mode is activated or not by calling:
PowerManager oPowerManager = (PowerManager) oContext.getSystemService(Context.POWER_SERVICE);
boolean bActivated = oPowerManager.isPowerSaveMode();
But, how can I find out if my app is on the App optimization list?
Call
isIgnoringBatteryOptimizations()
onPowerManager
. Quoting the documentation: