tags:

views:

48

answers:

1

hi, I want my application to be started whenever the phone is turned on or restarted. can anyone give me some suggestions regarding this please.

thanks kaisar

+4  A: 

You can set a broadcast receiver which can notify that the device boot is complete

android:name="android.intent.action.BOOT_COMPLETED"

Check this link out

http://www.androidcompetencycenter.com/2009/06/start-service-at-boot/

Rahul
Thanks a lot Rahul
kaisar