Mark, Thank you for the response. I think I got carried away with the idea of the fault being in the library, rather embarrassingly, the fault was in the class and was raising an exception I hadn't caught. I have fixed that and it now works.
Thank you everyone for your suggestions. Regards, Simon On Sun, May 22, 2011 at 11:56 AM, Mark Murphy <[email protected]>wrote: > Step #1: Get rid of android:process=":remote". > > Step #2: Double-check your LogCat. If AlarmManager (or anything) tries > to broadcast an Intent that cannot be resolved, a message is logged > (at warning level, IIRC). If you see it, it may help you narrow down > where you are going wrong. If you do not see it, your alarm is perhaps > not being scheduled. > > On Sun, May 22, 2011 at 5:39 AM, Simon Platten > <[email protected]> wrote: > > I've also tried (In the project manifest): > > > > <receiver android:process=":remote" > > android:name="packageReference.myReciever"/> > > > > Where the packageReference is the actual package library package name, > but > > this hasn't solved it either. > > > > > > On Sun, May 22, 2011 at 10:34 AM, Nikolay Elenkov > > <[email protected]> wrote: > >> > >> On Sun, May 22, 2011 at 5:58 PM, Simon Platten > >> <[email protected]> wrote: > >> > Just a thought, could it be the receiver statement in the XML > manifest? > >> > > >> > It currently reads: > >> > > >> > <receiver android:process=":remote" android:name="myReciever"/> > >> > > >> > myReciever is actually a class in my library which is in a different > >> > package, I'm not sure I have to change anything to reflect this. > >> > > >> > >> You have to add it to the application project's AndroidManifest.xml > >> and use the full qualified class name. The declaration in the library > >> project is ignored. > >> > >> -- > >> 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 > > > > -- > > 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 > > > > -- > Mark Murphy (a Commons Guy) > http://commonsware.com | http://github.com/commonsguy > http://commonsware.com/blog | http://twitter.com/commonsguy > > _The Busy Coder's Guide to Android Development_ Version 3.6 Available! > > -- > 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 -- 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

