1

Possible Duplicate:
What is a Sticky Intent? [Android]

I've found that some applications require a special permission to "send permanent broadcasts". I don't know what they are and how can those be helpful.

First, I don't know if I'm talinkg about public static final String BROADCAST_STICKY, and second can you briefly describe me how these permanent broadcasts work?

Or, obviously, you can address me to the proper documentation

Community
  • 1
  • 1
usr-local-ΕΨΗΕΛΩΝ
  • 26,101
  • 30
  • 154
  • 305

1 Answers1

1

Duplicate of: What is a Sticky Broadcast?

Documentation is here; http://developer.android.com/reference/android/Manifest.permission.html#BROADCAST_STICKY

Allows an application to broadcast sticky intents. These are broadcasts whose data is held by the system after being finished, so that clients can quickly retrieve that data without having to wait for the next broadcast.

Community
  • 1
  • 1
Waza_Be
  • 39,407
  • 49
  • 186
  • 260