Collection of stock apps and mechanisms from various manufacturers, which might affect background tasks and scheduled alarms with AlarmManager, etc., or apps in background in general. Also focusing on those, which prevent 3rd party apps from auto start after device boot.
Most of modern Android devices come with an app or mechanism, which automagically tries to figure out how to save battery and as a result might kill certain 3rd party apps. This might result in removing scheduled tasks and jobs, (e.g. alarms not going off, push notification not working, etc.). In many cases this happens completely independent from battery saving mechanisms of Android (such as Doze, which can be controlled correctly).
Though battery saving is important and 3rd party apps should be designed with this in mind, if the basic function of an app requires it to be kept running in the background then there should be a way to add it to exception lists. Unfortunately, in most cases, this is not possible from within the app itself. However, in many cases, there are white lists where users can manually add certain 3rd party apps. This list is a repository of known battery saving apps and mechanisms along with an Intent (or at least a Step-by-step guide), which can be started/shown to navigate the user to the relevant settings menu directly.
Open an issue or pull request if you found something wrong or have a new one to add. Please try to follow the following structure:
Manufacturer: Name of the manufacturer.
Build.MANUFACTURER: Sometimes the device returns a completely different manufacturer name from what one would expect.
Build.MODEL: Sometimes it is only related to certain devices (or not related to certain devices).
Known restrictions: If there is any known restriction (e.g. SDK version)
Steps: Step-by-step guide how one can find it in on the device.
Intents: Intents that can be started from the app to navigate the user directly to the settings.
Information below or in any other part of this repository might be incorrect or not 100% accurate. Always try to double check it and use at your own risk.
Manufacturer: Samsung
Build.MANUFACTURER: samsung
Build.MODEL: Applies to all
Known restrictions: Android 7.0+ only
Steps:
- Settings
- Device maintenance
- Battery
- Unmonitored apps list
Intents:
new Intent().setComponent(new ComponentName("com.samsung.android.lool",
"com.samsung.android.sm.ui.battery.BatteryActivity"))
Manufacturer: Huawei
Build.MANUFACTURER: huawei
Build.MODEL: NOT nexus
Known restrictions: Not applies to Huawei Nexus devices (which run stock Android). Up to Android 7.
Steps:
- Settings
- Advanced Settings
- Battery Manager
- Protected Apps
or
- Settings
- Privacy and Security
- Protected Apps
Intents:
new Intent().setComponent(new ComponentName("com.huawei.systemmanager",
"com.huawei.systemmanager.optimize.process.ProtectActivity"))
Manufacturer: Huawei
Build.MANUFACTURER: huawei
Build.MODEL: NOT nexus
Known restrictions: Not applies to Huawei Nexus devices (which run stock Android). From Android 7.
Steps:
- Phone Manager
- Lock screen cleanup
- Make sure App is NOT enabled (unchecked)
or
- Settings
- Battery
- Lock screen cleanup
- Set App to 'Don't close' (unchecked)
Intents:
getPackageManager().getLaunchIntentForPackage("com.huawei.systemmanager")
Manufacturer: Sony
Build.MANUFACTURER: sony
Build.MODEL: Applies to all
Known restrictions: Some old Android (4.something) versions don't have this feature.
Steps:
- Settings
- Power management
- STAMINA mode
- Apps active in standby
Intents:
//TODO
Manufacturer: Xiaomi
Build.MANUFACTURER: xiaomi
Build.MODEL: Applies to all (running MIUI)
Known restrictions: Applies to devices running MIUI (not the ones with Android One)
Steps:
- Settings
- Additional Settings
- Battery & Performance
- Manage Apps Battery Usage
- Choose Apps
- No restrictions
and
- Settings
- Permissions
- Auto-run management
and
- Settings
- Additional Settings
- Battery & Performance
- Power
- Settings button
- Disable internet -> Never
Intents:
new Intent("miui.intent.action.POWER_HIDE_MODE_APP_LIST").addCategory(Intent.CATEGORY_DEFAULT)
new Intent("miui.intent.action.OP_AUTO_START").addCategory(Intent.CATEGORY_DEFAULT)
new Intent().setComponent(ComponentName("com.miui.securitycenter", "com.miui.powercenter.PowerSettings"))
Manufacturer: Elephone
Build.MANUFACTURER: elephone
Build.MODEL: Applies to all
Known restrictions: Not known
Steps:
- Settings
- Background task clear
- White list
Intents:
//TODO
Manufacturer: ASUS
Build.MANUFACTURER: asus
Build.MODEL: Applies to all
Known restrictions: Asus mobile manager app installed
Steps:
- Asus Mobile Manager
- Auto-start Manager
Intents:
getPackageManager().getLaunchIntentForPackage("com.asus.mobilemanager")
Manufacturer: OPPO
Build.MANUFACTURER: oppo
Build.MODEL: Applies to all
Known restrictions: ColorOS 3+ (Android 7+)
Steps:
- Phone Manager
- Privacy Permissions
- Startup Manager
Intents:
getPackageManager().getLaunchIntentForPackage("com.color.safecenter");