On 3 apr, 18:47, alexk-il <[email protected]> wrote: > On Apr 3, 7:46 pm, alexk-il <[email protected]> wrote: > > > Hi, > > > I am trying to understand how the <android:exported=[true,false]> > > forks > > Ooops, should be "works" :)
Maybe those examples use intent filters? "The default value (of android:exported) depends on whether the broadcast receiver contains intent filters. The absence of any filters means that it can be invoked only by Intent objects that specify its exact class name. This implies that the receiver is intended only for application-internal use (since others would not normally know the class name). So in this case, the default value is "false". On the other hand, the presence of at least one filter implies that the broadcast receiver is intended to receive intents broadcast by the system or other applications, so the default value is "true"." -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en To unsubscribe, reply using "remove me" as the subject.

