Let me explain a bit about my app. My idea is to start the service when app is launched. The service should stay alive and update "life" every hour.
So, to initialize the Service, I should use StartServiceAt() in my Activity_Create. Right?
My app has 2 activities, the "life" label is on activity 1. So to update the label, which should I do? CallSub or CallSubDelay (what if activity 2 is active and activity 1 is in background)
And also, how to determine whether my app is running before I do a CallSub?