I\'ve come across something like this in the AndroidManifest.xml:
The above
You need to register your receiver specifying the intents you want to receive and if you want to receive all the intents then mention it.
Intent and Intent Filter are clearly mentioned in the API how they function. All intents concept are not supported in the public API.
Note: You can still use this type of receiver within your app by sending broadcast within your app.