On Fri, Feb 11, 2011 at 4:21 PM, Jawwad Farooq <[email protected]> wrote: > After receiving the broadcast, i want to set the Alarm. Here is the > code: > > > <receiver android:name=".util.OnBootReceiver"> > <intent-filter> > <action > android:name="android.intent.action.BOOT_COMPLETED" /> > <action > android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"/> > </intent-filter> > </receiver>
That will give your receiver control when either of those two actions are met. However, as is documented on the page I pointed you to: Note that the packages in this list do not receive this broadcast. Hence, your code will not get control when *your* application becomes available. And so, as I wrote at the top of this thread, get your application off of external memory, since that will not work: http://developer.android.com/guide/appendix/install-location.html#ShouldNot -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- 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

