Android Question ChatGPT Tips for Background Mode

My project is a "Background Reminder". I use Timer to track the reminder time.
I asked ChatGPT to analyze my project. They gave me the following recommendations:

- Background logic depends on Timer
- On Android 36, the service may be stopped
- Use ForegroundService / alarms

How should I handle this?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
It will not work with a timer.

For a reminder app, you don't need your app to run in the background all the time. You need to use StartReceiverAt: https://www.b4x.com/android/forum/threads/receivers-and-services-in-2023.145370/#content
Or for exact time:
 
Upvote 0
Top