-1

I am having a broadcast receiver that starts a service in ICS. I have not activity associated with the code. The issue that I am facing is that I am unable to receive the BOOT COMPLETED broadcast in my receiver. Is there a round about solution for this?

CharlesB
  • 86,532
  • 28
  • 194
  • 218
Govind
  • 21
  • 1
  • 1

1 Answers1

1

In newer versions of Android, an application must have been manually started by the user at least once before any background stuff can be run, so you're going to need an Activity.

alex
  • 6,359
  • 1
  • 23
  • 21