Is there an app or another possibility to watch for ALL Intents and Broadcast f开发者_运维百科lowing in an android system?
Maybe another app which uses a special intent (not the standart ones) you want to use or broadcast yourself.
You can't listen to every Intent
.
If you are worried that someone else uses your intent
use your package name as prefix.
For example if you are willing to have an intent
with the action SERVER_UPDATE
, use: com.nitromouse.appname.SERVER_UPDATE
why not? Just list all permitted intents in the intent filters section. If you find that intimidating, write a program to write the xml menifest (or may be pay someone for typing)? Oh.. dont forget to add all required permissions also...
精彩评论