I'm creating a Service that will be set up to start using the AlarmManager (using ELAPSED_REALTIME_WAKEUP). I do all my processing inside the onStartCommand method mainly because:
- It doesn't take long (read small file from disk, maybe push notifications via
NotificationManager) - I can easily set it to start in a separate process if I need to.
Under these circumstances, do I still need to obtain a WakeLock?
From what I know, you have to obtain a WakeLock only if you create separate threads (because the OS will see the main thread as idle and go to sleep). Is that true or do I still risk being interrupted by the OS... dozing off?