Service Not Getting Started At Boot
i have a receiver that starts a service at boot but the receiver never gets fired when at boot manifest
Solution 1:
tyzyj,
It looks like you may have misspelled the word receive
in multiple places as recieve
.
Try...
<receiverandroid:name=".BatteryReceiver"><intent-filter><actionandroid:name="android.intent.action.BOOT_COMPLETED"/></intent-filter></receiver>
unless the class name is misspelled as well? You may want to post the code for that Receiver class.
Post a Comment for "Service Not Getting Started At Boot"