GPack
GPack

Reputation: 2504

Doze mode and foreground service

Checking my app's behavior on M Preview device, it seems that its foreground (with active notification) service playing music is not affected by Doze mode. But reading docs it seems that foreground services are exempt only from AppStandby.

What is the real rule?

Upvotes: 17

Views: 9642

Answers (2)

zzz zzz
zzz zzz

Reputation: 89

Attention, Foreground service can prevent your app never into app standby, but not doze.

Here use adb cmd to test

$ adb shell dumpsys battery unplug    
$ adb shell am set-inactive <packageName> true

Upvotes: 0

sec_aw
sec_aw

Reputation: 1594

In this post's comments on Sep 17 Dianne Hackborn writes:

Apps that have been running foreground services (with the associated notification) are not restricted by doze.

So yes, your findings seem to be the intended behavior.

Upvotes: 33

Related Questions