Skip to content
Advertisement

How to exclude an Android App from Battery Optimization using code

I am new to Android, now I am working on a Project which is based on GPS. I got source code from internet(traccar). my requirement is like the app should update location on each 1Km or each 1hr. but the problem is the app not working in background after some time(10 – 20 mins). Is there any solution for this ?

what should I do(in code) to exclude this app from battery optimisation when the app is launching ? is it possible ?

Advertisement

Answer

I think you’re having 2 different problems:

1) If you want to keep your app in background you should use a foreground Service. That way your app won’t be considered to be in background by the system and the chances of its process being killed are reduced drastically. The downside is that as long as your Service is in foreground you need to show a permanent notification.

2) You cannot exclude your app from battery optimization yourself, but you can prompt the user the settings to whitelist your app. In order to do that you can refer to the official docs, you’ll need to add the Manifest.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS permission to the manifest and then launch an intent with action ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS. The user will then be able to whitelist your app, only she/he can do that because otherwise every app would whitelist itself and the purpose of the battery optimization would be defied.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement