diff options
| author | 2012-12-06 15:22:11 -0800 | |
|---|---|---|
| committer | 2012-12-06 15:22:11 -0800 | |
| commit | a4405ba6ea56cd1a13c45bf8e37f7b44f7d038b0 (patch) | |
| tree | d0d39e4ded2f77dbef80c390d8476a9da2a06bdf | |
| parent | 942de41bb1b2e14388055cfd0a3645394277b5da (diff) | |
Add new protected broadcasts
According to the javadocs for these intents, they are all
protected intents. It appears the original author forgot
to add them to this file.
Change-Id: I025061716d5707f10939019f2bc5bc3d4d23b04f
| -rw-r--r-- | core/res/AndroidManifest.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 316de5067b75..9822e63b0319 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -164,9 +164,10 @@ <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" /> <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" /> <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" /> - - - + <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" /> + <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" /> + <protected-broadcast android:name="android.intent.action.AIRPLANE_MODE" /> + <protected-broadcast android:name="android.intent.action.ADVANCED_SETTINGS" /> <!-- ====================================== --> <!-- Permissions for things that cost money --> |