I'm trying to set up an alarm once a day so my user knows that he needs to check the app (extracts data from bluetooth devices, etc)
So far, I have used AlarmManager.setExactAndAllowWhileIdle(...), and a broadcastreceiver that plays some sound in the onReceive method, but this won't work when app enters App Standby.
Anyone knows how to properly set an alarm that prompts no matter if the device is in Doze or the app is in App Standby?