The receiver name in your manifest file needs a fully qualified class name (including package or alternatively "." shortcut).
So write either (where *com.example.myapp* has to be the correct package of MyRecever): android:name="*com.example.myapp.*MyRecever" > ^^^^^^^^^^^^^^^^^^ > or (if MyRecever is in your app's base package): android:name="*.*MyRecever" > ^ > -- 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

