-3

I am new to Android Job Scheduler, I want to run a task every day morning 9AM without using Alarm manager.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
  • 2
    Welcome to Stack Overflow. Can you tell us about what you tried and why this did not work for you. Please [edit] your question to include these further details. See also [ask] for how to improve your question. – Ralf Stubner Jul 16 '18 at 05:59

1 Answers1

0

If you are not using AlarmManager, then you won't be able to guarantee that your task will be executed at 9 AM. If its not crucial, you can use WorkManager or JobScheduler, depending on your need.

Note: Using either of these will not guarantee that your job will be executed exactly at 9AM. These will respect doze mode and the job will be executed once during the specified interval which controlled by OS.

Sagar
  • 23,903
  • 4
  • 62
  • 62