vote up 1 vote down star

Hi, My app needs to update its DB each day at 14:00. Which is the best way to schedule the update after the application is installed? I'm already using the BOOT_COMPLETED which works great if the phone is rebooted.

Currently I'm scheduling the update each time the main activity is started, but I'm not very pleased with this approach since it eats additional processor cycles.

Is there another way to schedule the update after the app was installed?

Thanks

flag

2 Answers

vote up 1 vote down

If you want the update to run once upon the initial install I would check for a flag saved as a Preference. If the flag isn't there then you know it's the first run and you should get the update and then set the flag. If the flag is there then you know it isn't the initial run and you can skip the update.

Help for preferences is here and here.

link|flag
vote up 0 vote down

you can always have a service that you start with the BOOT_COMPLETED and sets up a 'scheduleDelayed' task in the main loop. or you can use AlarmManager service, see this example:

http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/app/AlarmController.html

link|flag
I already use that approach, and as I already said... It works great. But I still need to schedule the updates somehow right after the application was installed... before the user starts any activity – Tughi Jul 30 at 13:05
that cannot be done. the broadcast of "application installed" is sent to all packages EXCEPT the actual application. so you cannot perform any task after installing. – Reflog Aug 5 at 12:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.