Continually Running Background Service

后端 未结 6 1481
挽巷
挽巷 2020-11-29 04:01

I\'m targeting sdk version 27 with a minimum version of 19 and trying to get a service that runs continuously in the background. I tried different service start options but

6条回答
  •  温柔的废话
    2020-11-29 04:33

    In oreo release Android defined limits to background services.

    To improve the user experience, Android 8.0 (API level 26) imposes limitations on what apps can do while running in the background.

    Still if app need to run its service always, then we can create foreground service.

    Background Service Limitations: While an app is idle, there are limits to its use of background services. This does not apply to foreground services, which are more noticeable to the user.

    So create a foreground service. In which you will put a notification for user while your service is running. See this answer (There are many others)

    Now what if you don't want a notification for your service. A solution is for that.

    You can create some periodic task that will start your service, service will do its work and stops itself. By this your app will not be considered battery draining.

    You can create periodic task with Alarm Manager, Job Scheduler, Evernote-Jobs or Work Manager.

    • Instead of telling pros & cons of each one. I just tell you best. Work manager is best solution for periodic tasks. Which was introduced with Android Architecture Component.
    • Unlike Job-Scheduler(only >21 API) it will work for all versions.
    • Also it starts work after a Doze-Standby mode.
    • Make a Android Boot Receiver for scheduling service after device boot.

    I created forever running service with Work-Manager, that is working perfectly.

提交回复
热议问题