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

