I found sample code, but it seems that the classes and string constants used in them are outdated and are no longer provided. Also can you tell me what changes to make in the manifest file. I found example code at the following link
|
feedback
|
|
First, you need the permission in your manifest:
Also, in your manifest, define your service and listen for the boot-completed action:
Then you need to define the receiver that will get the BOOT_COMPLETED action and start your service.
And now your service should be running when the phone starts up. | |||||||
feedback
|
|
Listen for the ACTION_BOOT_COMPLETE and do what you need to from there. There is a code snippet here (which will anger CommonWare - my apologies). | |||
|
feedback
|