Reputation: 1600
I'm having a hard time figuring out if I need to acquire a WakeLock if I'm also using startForeground().
Upvotes: 2
Views: 726
Reputation: 1007359
startForeground()
does not automatically acquire a WakeLock
. Whether you need a WakeLock
depends upon what your service is doing.
Upvotes: 4