diff options
author | Nick Kralevich <nnk@google.com> | 2012-12-06 15:22:11 -0800 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2012-12-06 15:22:11 -0800 |
commit | a4405ba6ea56cd1a13c45bf8e37f7b44f7d038b0 (patch) | |
tree | d0d39e4ded2f77dbef80c390d8476a9da2a06bdf /core/res/AndroidManifest.xml | |
parent | 942de41bb1b2e14388055cfd0a3645394277b5da (diff) | |
download | frameworks_base-a4405ba6ea56cd1a13c45bf8e37f7b44f7d038b0.zip frameworks_base-a4405ba6ea56cd1a13c45bf8e37f7b44f7d038b0.tar.gz frameworks_base-a4405ba6ea56cd1a13c45bf8e37f7b44f7d038b0.tar.bz2 |
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
Diffstat (limited to 'core/res/AndroidManifest.xml')
-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 316de50..9822e63 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 --> |