D danoptic Member Licensed User Longtime User Nov 28, 2011 #1 How can I make an app that starts automaticly everyday at the same time? (like an alert)
R Rui Member Licensed User Longtime User Nov 28, 2011 #2 You need services for that take a look at this http://www.b4x.com/forum/basic4android-getting-started-tutorials/7542-service-modules.html#post42973 I think startserviceat is what you want Upvote 0
You need services for that take a look at this http://www.b4x.com/forum/basic4android-getting-started-tutorials/7542-service-modules.html#post42973 I think startserviceat is what you want
D danoptic Member Licensed User Longtime User Nov 29, 2011 #3 Start when phone on How can I make the app start when the phone is on? (does the startserviceat is the way b4a-bridge works?) Upvote 0
Start when phone on How can I make the app start when the phone is on? (does the startserviceat is the way b4a-bridge works?)
Erel B4X founder Staff member Licensed User Longtime User Nov 29, 2011 #4 To start an application at boot you should set Project - Service properties - Start at boot. You will then need to call StartServiceAt to schedule your service to run at a specific time. B4A-Bridge doesn't use it as it is not started automatically. Note that the source for B4A-Bridge is available in the forum. Upvote 0
To start an application at boot you should set Project - Service properties - Start at boot. You will then need to call StartServiceAt to schedule your service to run at a specific time. B4A-Bridge doesn't use it as it is not started automatically. Note that the source for B4A-Bridge is available in the forum.