dapaintballer331 wrote: > I've been modifying things ALL DAY trying to get this to work, please > help. > > I have a broadcast receiver that recieves a "boot completed" signal. > the onReceive method works!... well at least it sends output to the > log. > > THE PROBLEM is that that method is responsible for creating a > AlarmService, to start call a different class every minute. That other > class never has it's onReceive method called... > > AndroidManifest snippet: > <receiver android:name=".FmiBootup"> <!-------------THIS WORKS > FINE-------------> > <intent-filter> > <action > android:name="android.intent.action.BOOT_COMPLETED" / > </intent-filter> > </receiver> > <receiver android:name=".FmiDaemon" android:process=":remote" />
Try getting rid of android:process=":remote". -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

