blob: 316de5067b75808a2d665dcbb3f926138db72fc1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/common/AndroidManifest.xml
4**
5** Copyright 2006, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Dianne Hackbornd2509fd2011-09-12 12:29:43 -070021 package="android" coreApp="true" android:sharedUserId="android.uid.system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022 android:sharedUserLabel="@string/android_system_label">
23
Dianne Hackborn854060af2009-07-09 18:14:31 -070024 <!-- ================================================ -->
25 <!-- Special broadcasts that only the system can send -->
26 <!-- ================================================ -->
27 <eat-comment />
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070028
Dianne Hackborn854060af2009-07-09 18:14:31 -070029 <protected-broadcast android:name="android.intent.action.SCREEN_OFF" />
30 <protected-broadcast android:name="android.intent.action.SCREEN_ON" />
31 <protected-broadcast android:name="android.intent.action.USER_PRESENT" />
32 <protected-broadcast android:name="android.intent.action.TIME_TICK" />
33 <protected-broadcast android:name="android.intent.action.TIMEZONE_CHANGED" />
34 <protected-broadcast android:name="android.intent.action.BOOT_COMPLETED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070035 <protected-broadcast android:name="android.intent.action.PACKAGE_INSTALL" />
36 <protected-broadcast android:name="android.intent.action.PACKAGE_ADDED" />
37 <protected-broadcast android:name="android.intent.action.PACKAGE_REPLACED" />
Dianne Hackborne7f97212011-02-24 14:40:20 -080038 <protected-broadcast android:name="android.intent.action.MY_PACKAGE_REPLACED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070039 <protected-broadcast android:name="android.intent.action.PACKAGE_REMOVED" />
Dianne Hackbornf9abb402011-08-10 15:00:59 -070040 <protected-broadcast android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070041 <protected-broadcast android:name="android.intent.action.PACKAGE_CHANGED" />
42 <protected-broadcast android:name="android.intent.action.PACKAGE_RESTARTED" />
43 <protected-broadcast android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
Dianne Hackborne7f97212011-02-24 14:40:20 -080044 <protected-broadcast android:name="android.intent.action.PACKAGE_FIRST_LAUNCH" />
Kenny Root5ab21572011-07-27 11:11:19 -070045 <protected-broadcast android:name="android.intent.action.PACKAGE_NEEDS_VERIFICATION" />
rich canningsd1b5cfc2012-08-29 14:49:51 -070046 <protected-broadcast android:name="android.intent.action.PACKAGE_VERIFIED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070047 <protected-broadcast android:name="android.intent.action.UID_REMOVED" />
Dianne Hackborn52c62342012-09-21 10:57:45 -070048 <protected-broadcast android:name="android.intent.action.QUERY_PACKAGE_RESTART" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070049 <protected-broadcast android:name="android.intent.action.CONFIGURATION_CHANGED" />
Dianne Hackborn362d5b92009-11-11 18:04:39 -080050 <protected-broadcast android:name="android.intent.action.LOCALE_CHANGED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070051 <protected-broadcast android:name="android.intent.action.BATTERY_CHANGED" />
52 <protected-broadcast android:name="android.intent.action.BATTERY_LOW" />
53 <protected-broadcast android:name="android.intent.action.BATTERY_OKAY" />
54 <protected-broadcast android:name="android.intent.action.ACTION_POWER_CONNECTED" />
55 <protected-broadcast android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
56 <protected-broadcast android:name="android.intent.action.ACTION_SHUTDOWN" />
57 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_LOW" />
58 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_OK" />
Jake Hambybb371632010-08-23 18:16:48 -070059 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_FULL" />
60 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_NOT_FULL" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070061 <protected-broadcast android:name="android.intent.action.NEW_OUTGOING_CALL" />
62 <protected-broadcast android:name="android.intent.action.REBOOT" />
Dianne Hackborn7299c412010-03-04 18:41:49 -080063 <protected-broadcast android:name="android.intent.action.DOCK_EVENT" />
Jason parks4ca74dc2011-03-14 15:23:31 -050064 <protected-broadcast android:name="android.intent.action.MASTER_CLEAR_NOTIFICATION" />
Amith Yamasani13593602012-03-22 16:16:17 -070065 <protected-broadcast android:name="android.intent.action.USER_ADDED" />
66 <protected-broadcast android:name="android.intent.action.USER_REMOVED" />
Dianne Hackborn80a4af22012-08-27 19:18:31 -070067 <protected-broadcast android:name="android.intent.action.USER_STOPPED" />
Dianne Hackborn5dc5a002012-09-15 19:33:48 -070068 <protected-broadcast android:name="android.intent.action.USER_BACKGROUND" />
69 <protected-broadcast android:name="android.intent.action.USER_FOREGROUND" />
Amith Yamasani13593602012-03-22 16:16:17 -070070 <protected-broadcast android:name="android.intent.action.USER_SWITCHED" />
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070071
Dianne Hackborn7299c412010-03-04 18:41:49 -080072 <protected-broadcast android:name="android.app.action.ENTER_CAR_MODE" />
73 <protected-broadcast android:name="android.app.action.EXIT_CAR_MODE" />
74 <protected-broadcast android:name="android.app.action.ENTER_DESK_MODE" />
75 <protected-broadcast android:name="android.app.action.EXIT_DESK_MODE" />
Debashish Chatterjeee53eba02011-08-04 14:12:58 +010076
Christopher Tate4cc86e12009-09-21 19:36:51 -070077 <protected-broadcast android:name="android.backup.intent.RUN" />
78 <protected-broadcast android:name="android.backup.intent.CLEAR" />
79 <protected-broadcast android:name="android.backup.intent.INIT" />
80
Nick Pelly72440a0e2009-09-15 17:21:10 -070081 <protected-broadcast android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
82 <protected-broadcast android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
83 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
84 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
85 <protected-broadcast android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -070086 <protected-broadcast android:name="android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED" />
Nick Pelly72440a0e2009-09-15 17:21:10 -070087 <protected-broadcast android:name="android.bluetooth.device.action.FOUND" />
88 <protected-broadcast android:name="android.bluetooth.device.action.DISAPPEARED" />
89 <protected-broadcast android:name="android.bluetooth.device.action.CLASS_CHANGED" />
90 <protected-broadcast android:name="android.bluetooth.device.action.ACL_CONNECTED" />
91 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
92 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
93 <protected-broadcast android:name="android.bluetooth.device.action.NAME_CHANGED" />
94 <protected-broadcast android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
95 <protected-broadcast android:name="android.bluetooth.device.action.NAME_FAILED" />
96 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
97 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -070098 <protected-broadcast android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REPLY" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -070099 <protected-broadcast
100 android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
101 <protected-broadcast
102 android:name="android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED" />
103 <protected-broadcast
104 android:name="android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT" />
105 <protected-broadcast
106 android:name="android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED" />
107 <protected-broadcast
108 android:name="android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED" />
109 <protected-broadcast
110 android:name="android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED" />
111 <protected-broadcast
112 android:name="android.bluetooth.pan.profile.action.CONNECTION_STATE_CHANGED" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700113
Jeff Browne08ae382012-09-07 20:36:36 -0700114 <protected-broadcast android:name="android.hardware.display.action.WIFI_DISPLAY_STATUS_CHANGED" />
115
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800116 <protected-broadcast android:name="android.hardware.usb.action.USB_STATE" />
117 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
118 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
119 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
120 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
Mike Lockwood57c798a2010-06-23 17:36:36 -0400121
Mike Lockwood8f014052012-04-26 11:23:48 -0700122 <protected-broadcast android:name="android.intent.action.HEADSET_PLUG" />
123 <protected-broadcast android:name="android.intent.action.ANALOG_AUDIO_DOCK_PLUG" />
124 <protected-broadcast android:name="android.intent.action.DIGITAL_AUDIO_DOCK_PLUG" />
125 <protected-broadcast android:name="android.intent.action.HDMI_AUDIO_PLUG" />
126 <protected-broadcast android:name="android.intent.action.USB_AUDIO_ACCESSORY_PLUG" />
127 <protected-broadcast android:name="android.intent.action.USB_AUDIO_DEVICE_PLUG" />
128
Jeff Sharkey961e3042011-08-29 16:02:57 -0700129 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE" />
130 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE_IMMEDIATE" />
Haoyu Baidb3c8672012-06-20 14:29:57 -0700131 <protected-broadcast android:name="android.net.conn.DATA_ACTIVITY_CHANGE" />
Jeff Sharkey961e3042011-08-29 16:02:57 -0700132
Nick Pellyf36c6db2010-10-14 19:16:35 -0700133 <protected-broadcast android:name="android.nfc.action.LLCP_LINK_STATE_CHANGED" />
Nick Pelly367f41f2011-03-08 11:43:30 -0800134 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_ON_DETECTED" />
135 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED" />
136 <protected-broadcast android:name="com.android.nfc_extras.action.AID_SELECTED" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700137
Nick Pellyf36c6db2010-10-14 19:16:35 -0700138 <protected-broadcast android:name="android.nfc.action.TRANSACTION_DETECTED" />
Robert Greenwalt03595d02010-11-02 14:08:23 -0700139 <protected-broadcast android:name="android.intent.action.CLEAR_DNS_CACHE" />
Robert Greenwalt434203a2010-10-11 16:00:27 -0700140 <protected-broadcast android:name="android.intent.action.PROXY_CHANGE" />
Mike Lockwood24236072010-06-23 17:36:36 -0400141
Christopher Tate8662cab52012-02-23 14:59:36 -0800142 <protected-broadcast android:name="android.os.UpdateLock.UPDATE_LOCK_CHANGED" />
Nick Pellya64e2ad42011-03-14 10:28:11 -0700143
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400144 <protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
145 <protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800146 <protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
147
148 <protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
149 <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
150 <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" />
151 <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" />
152 <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" />
153 <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" />
154 <protected-broadcast android:name="android.net.wifi.STATE_CHANGE" />
155 <protected-broadcast android:name="android.net.wifi.LINK_CONFIGURATION_CHANGED" />
156 <protected-broadcast android:name="android.net.wifi.CONFIGURED_NETWORKS_CHANGE" />
157 <protected-broadcast android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
158 <protected-broadcast android:name="android.net.wifi.supplicant.STATE_CHANGE" />
159 <protected-broadcast android:name="android.net.wifi.p2p.STATE_CHANGED" />
160 <protected-broadcast android:name="android.net.wifi.p2p.DISCOVERY_STATE_CHANGE" />
161 <protected-broadcast android:name="android.net.wifi.p2p.THIS_DEVICE_CHANGED" />
162 <protected-broadcast android:name="android.net.wifi.p2p.PEERS_CHANGED" />
163 <protected-broadcast android:name="android.net.wifi.p2p.CONNECTION_STATE_CHANGE" />
164 <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" />
165 <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" />
166 <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" />
167
168
169
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 <!-- ====================================== -->
172 <!-- Permissions for things that cost money -->
173 <!-- ====================================== -->
174 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 <!-- Used for permissions that can be used to make the user spend money
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700177 without their direct involvement. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 <permission-group android:name="android.permission-group.COST_MONEY"
179 android:label="@string/permgrouplab_costMoney"
180 android:description="@string/permgroupdesc_costMoney" />
181
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 <!-- ================================== -->
183 <!-- Permissions for accessing messages -->
184 <!-- ================================== -->
185 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 <!-- Used for permissions that allow an application to send messages
188 on behalf of the user or intercept messages being received by the
189 user. This is primarily intended for SMS/MMS messaging, such as
190 receiving or reading an MMS. -->
191 <permission-group android:name="android.permission-group.MESSAGES"
192 android:label="@string/permgrouplab_messages"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700193 android:icon="@drawable/perm_group_messages"
194 android:description="@string/permgroupdesc_messages"
195 android:permissionGroupFlags="personalInfo"
196 android:priority="360"/>
197
198 <!-- Allows an application to send SMS messages. -->
199 <permission android:name="android.permission.SEND_SMS"
200 android:permissionGroup="android.permission-group.MESSAGES"
201 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700202 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700203 android:label="@string/permlab_sendSms"
204 android:description="@string/permdesc_sendSms" />
205
206 <!-- Allows an application to send SMS messages via the Messaging app with no user
207 input or confirmation.
208 @hide -->
209 <permission android:name="android.permission.SEND_SMS_NO_CONFIRMATION"
210 android:permissionGroup="android.permission-group.MESSAGES"
211 android:protectionLevel="signature|system"
212 android:label="@string/permlab_sendSmsNoConfirmation"
213 android:description="@string/permdesc_sendSmsNoConfirmation" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214
215 <!-- Allows an application to monitor incoming SMS messages, to record
216 or perform processing on them. -->
217 <permission android:name="android.permission.RECEIVE_SMS"
218 android:permissionGroup="android.permission-group.MESSAGES"
219 android:protectionLevel="dangerous"
220 android:label="@string/permlab_receiveSms"
221 android:description="@string/permdesc_receiveSms" />
222
223 <!-- Allows an application to monitor incoming MMS messages, to record
224 or perform processing on them. -->
225 <permission android:name="android.permission.RECEIVE_MMS"
226 android:permissionGroup="android.permission-group.MESSAGES"
227 android:protectionLevel="dangerous"
228 android:label="@string/permlab_receiveMms"
229 android:description="@string/permdesc_receiveMms" />
230
Jake Hambyab79ee42011-04-26 16:26:46 -0700231 <!-- Allows an application to receive emergency cell broadcast messages,
232 to record or display them to the user. Reserved for system apps.
233 @hide Pending API council approval -->
234 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
235 android:permissionGroup="android.permission-group.MESSAGES"
Dianne Hackborne639da72012-02-21 15:11:13 -0800236 android:protectionLevel="signature|system"
Jake Hambyab79ee42011-04-26 16:26:46 -0700237 android:label="@string/permlab_receiveEmergencyBroadcast"
238 android:description="@string/permdesc_receiveEmergencyBroadcast" />
239
Jake Hambyc3296ff2012-04-18 12:32:18 -0700240 <!-- Allows an application to read previously received cell broadcast
241 messages and to register a content observer to get notifications when
242 a cell broadcast has been received and added to the database. For
243 emergency alerts, the database is updated immediately after the
244 alert dialog and notification sound/vibration/speech are presented.
245 The "read" column is then updated after the user dismisses the alert.
246 This enables supplementary emergency assistance apps to start loading
247 additional emergency information (if Internet access is available)
248 when the alert is first received, and to delay presenting the info
249 to the user until after the initial alert dialog is dismissed.
250 @hide Pending API council approval -->
251 <permission android:name="android.permission.READ_CELL_BROADCASTS"
252 android:permissionGroup="android.permission-group.MESSAGES"
253 android:protectionLevel="dangerous"
254 android:label="@string/permlab_readCellBroadcasts"
255 android:description="@string/permdesc_readCellBroadcasts" />
256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 <!-- Allows an application to read SMS messages. -->
258 <permission android:name="android.permission.READ_SMS"
259 android:permissionGroup="android.permission-group.MESSAGES"
260 android:protectionLevel="dangerous"
261 android:label="@string/permlab_readSms"
262 android:description="@string/permdesc_readSms" />
263
264 <!-- Allows an application to write SMS messages. -->
265 <permission android:name="android.permission.WRITE_SMS"
266 android:permissionGroup="android.permission-group.MESSAGES"
267 android:protectionLevel="dangerous"
268 android:label="@string/permlab_writeSms"
269 android:description="@string/permdesc_writeSms" />
270
271 <!-- Allows an application to monitor incoming WAP push messages. -->
272 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
273 android:permissionGroup="android.permission-group.MESSAGES"
274 android:protectionLevel="dangerous"
275 android:label="@string/permlab_receiveWapPush"
276 android:description="@string/permdesc_receiveWapPush" />
277
278 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700279 <!-- Permissions for accessing social info (contacts and social) -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 <!-- =============================================================== -->
281 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700282
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700283 <!-- Used for permissions that provide access to the user's social connections,
284 such as contacts, call logs, social stream, etc. This includes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 both reading and writing of this data (which should generally be
286 expressed as two distinct permissions). -->
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700287
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700288 <permission-group android:name="android.permission-group.SOCIAL_INFO"
289 android:label="@string/permgrouplab_socialInfo"
290 android:icon="@drawable/perm_group_social_info"
291 android:description="@string/permgroupdesc_socialInfo"
292 android:permissionGroupFlags="personalInfo"
293 android:priority="320" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294
295 <!-- Allows an application to read the user's contacts data. -->
296 <permission android:name="android.permission.READ_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700297 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 android:protectionLevel="dangerous"
299 android:label="@string/permlab_readContacts"
300 android:description="@string/permdesc_readContacts" />
301
302 <!-- Allows an application to write (but not read) the user's
303 contacts data. -->
304 <permission android:name="android.permission.WRITE_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700305 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 android:protectionLevel="dangerous"
307 android:label="@string/permlab_writeContacts"
308 android:description="@string/permdesc_writeContacts" />
309
Subir Jhanb603af612012-08-06 17:19:22 -0700310 <!-- Allows an application to execute contacts directory search.
311 This should only be used by ContactsProvider. -->
312 <!-- @hide -->
313 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
314 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Subir Jhanb0224cca2012-08-16 17:04:54 -0700315 android:protectionLevel="signature|system" />
Subir Jhanb603af612012-08-06 17:19:22 -0700316
Scott Main2681faa2012-11-01 12:18:31 -0700317 <!-- Allows an application to read the user's call log.
318 <p class="note"><strong>Note:</strong> If your app uses the
319 {@link #READ_CONTACTS} permission and <em>both</em> your <a
320 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
321 minSdkVersion}</a> and <a
322 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
323 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
324 grants your app this permission. If you don't need this permission, be sure your <a
325 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
326 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700327 <permission android:name="android.permission.READ_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700328 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700329 android:protectionLevel="dangerous"
330 android:label="@string/permlab_readCallLog"
331 android:description="@string/permdesc_readCallLog" />
332
333 <!-- Allows an application to write (but not read) the user's
Scott Main2681faa2012-11-01 12:18:31 -0700334 contacts data.
335 <p class="note"><strong>Note:</strong> If your app uses the
336 {@link #WRITE_CONTACTS} permission and <em>both</em> your <a
337 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
338 minSdkVersion}</a> and <a
339 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
340 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
341 grants your app this permission. If you don't need this permission, be sure your <a
342 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
343 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700344 <permission android:name="android.permission.WRITE_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700345 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700346 android:protectionLevel="dangerous"
347 android:label="@string/permlab_writeCallLog"
348 android:description="@string/permdesc_writeCallLog" />
349
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700350 <!-- Allows an application to read from the user's social stream. -->
351 <permission android:name="android.permission.READ_SOCIAL_STREAM"
352 android:permissionGroup="android.permission-group.SOCIAL_INFO"
353 android:protectionLevel="dangerous"
354 android:label="@string/permlab_readSocialStream"
355 android:description="@string/permdesc_readSocialStream" />
356
357 <!-- Allows an application to write (but not read) the user's
358 social stream data. -->
359 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
360 android:permissionGroup="android.permission-group.SOCIAL_INFO"
361 android:protectionLevel="dangerous"
362 android:label="@string/permlab_writeSocialStream"
363 android:description="@string/permdesc_writeSocialStream" />
364
365 <!-- =============================================================== -->
366 <!-- Permissions for accessing information about the device owner -->
367 <!-- =============================================================== -->
368 <eat-comment />
369
370 <!-- Used for permissions that provide access to information about the device
371 user such as profile information. This includes both reading and
372 writing of this data (which should generally be expressed as two
373 distinct permissions). -->
374 <permission-group android:name="android.permission-group.PERSONAL_INFO"
375 android:label="@string/permgrouplab_personalInfo"
376 android:icon="@drawable/perm_group_personal_info"
377 android:description="@string/permgroupdesc_personalInfo"
378 android:permissionGroupFlags="personalInfo"
379 android:priority="310" />
380
Dave Santoro43251332011-05-11 11:39:54 -0700381 <!-- Allows an application to read the user's personal profile data. -->
382 <permission android:name="android.permission.READ_PROFILE"
383 android:permissionGroup="android.permission-group.PERSONAL_INFO"
384 android:protectionLevel="dangerous"
385 android:label="@string/permlab_readProfile"
386 android:description="@string/permdesc_readProfile" />
387
388 <!-- Allows an application to write (but not read) the user's
389 personal profile data. -->
390 <permission android:name="android.permission.WRITE_PROFILE"
391 android:permissionGroup="android.permission-group.PERSONAL_INFO"
392 android:protectionLevel="dangerous"
393 android:label="@string/permlab_writeProfile"
394 android:description="@string/permdesc_writeProfile" />
395
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700396 <!-- =============================================================== -->
397 <!-- Permissions for accessing the device calendar -->
398 <!-- =============================================================== -->
399 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -0700400
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700401 <!-- Used for permissions that provide access to the device
402 calendar to create / view events.-->
403 <permission-group android:name="android.permission-group.CALENDAR"
404 android:label="@string/permgrouplab_calendar"
405 android:icon="@drawable/perm_group_calendar"
406 android:description="@string/permgroupdesc_calendar"
407 android:permissionGroupFlags="personalInfo"
408 android:priority="290" />
Dave Santoro0b61f592011-10-03 18:25:26 -0700409
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410 <!-- Allows an application to read the user's calendar data. -->
411 <permission android:name="android.permission.READ_CALENDAR"
412 android:permissionGroup="android.permission-group.PERSONAL_INFO"
413 android:protectionLevel="dangerous"
414 android:label="@string/permlab_readCalendar"
415 android:description="@string/permdesc_readCalendar" />
416
417 <!-- Allows an application to write (but not read) the user's
418 calendar data. -->
419 <permission android:name="android.permission.WRITE_CALENDAR"
420 android:permissionGroup="android.permission-group.PERSONAL_INFO"
421 android:protectionLevel="dangerous"
422 android:label="@string/permlab_writeCalendar"
423 android:description="@string/permdesc_writeCalendar" />
424
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700425 <!-- =============================================================== -->
426 <!-- Permissions for accessing the user dictionary-->
427 <!-- =============================================================== -->
428 <eat-comment />
429
430 <!-- Used for permissions that provide access to the user
431 calendar to create / view events.-->
432 <permission-group android:name="android.permission-group.USER_DICTIONARY"
433 android:label="@string/permgrouplab_dictionary"
434 android:icon="@drawable/perm_group_user_dictionary"
435 android:description="@string/permgroupdesc_dictionary"
436 android:permissionGroupFlags="personalInfo"
437 android:priority="170" />
438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700440 really only be required by an IME, or a dictionary editor like
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700441 the Settings app. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442 <permission android:name="android.permission.READ_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700443 android:permissionGroup="android.permission-group.USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 android:protectionLevel="dangerous"
445 android:label="@string/permlab_readDictionary"
446 android:description="@string/permdesc_readDictionary" />
447
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700448 <!-- Used for permissions that provide access to the user
449 calendar to create / view events.-->
450 <permission-group android:name="android.permission-group.WRITE_USER_DICTIONARY"
451 android:label="@string/permgrouplab_writeDictionary"
452 android:icon="@drawable/perm_group_user_dictionary_write"
453 android:description="@string/permgroupdesc_writeDictionary"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700454 android:priority="160" />
455
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700456 <!-- Allows an application to write to the user dictionary. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700458 android:permissionGroup="android.permission-group.WRITE_USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800459 android:protectionLevel="normal"
460 android:label="@string/permlab_writeDictionary"
461 android:description="@string/permdesc_writeDictionary" />
462
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700463 <!-- =============================================================== -->
464 <!-- Permissions for accessing the user bookmarks -->
465 <!-- =============================================================== -->
466 <eat-comment />
467
468 <!-- Used for permissions that provide access to the user
469 bookmarks and browser history.-->
470 <permission-group android:name="android.permission-group.BOOKMARKS"
471 android:label="@string/permgrouplab_bookmarks"
472 android:icon="@drawable/perm_group_bookmarks"
473 android:description="@string/permgroupdesc_bookmarks"
474 android:permissionGroupFlags="personalInfo"
475 android:priority="300" />
476
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400477 <!-- Allows an application to read (but not write) the user's
478 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400479 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700480 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400481 android:label="@string/permlab_readHistoryBookmarks"
482 android:description="@string/permdesc_readHistoryBookmarks"
483 android:protectionLevel="dangerous" />
484
485 <!-- Allows an application to write (but not read) the user's
486 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400487 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700488 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400489 android:label="@string/permlab_writeHistoryBookmarks"
490 android:description="@string/permdesc_writeHistoryBookmarks"
491 android:protectionLevel="dangerous" />
492
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700493 <!-- =============================================================== -->
494 <!-- Permissions for setting the device alarm -->
495 <!-- =============================================================== -->
496 <eat-comment />
497
498 <!-- Used for permissions that provide access to the user voicemail box. -->
499 <permission-group android:name="android.permission-group.DEVICE_ALARMS"
500 android:label="@string/permgrouplab_deviceAlarms"
501 android:icon="@drawable/perm_group_device_alarms"
502 android:description="@string/permgroupdesc_deviceAlarms"
503 android:permissionGroupFlags="personalInfo"
504 android:priority="210" />
505
Patrick Scotta73c4b02010-09-22 08:16:53 -0400506 <!-- Allows an application to broadcast an Intent to set an alarm for the
507 user. -->
508 <permission android:name="com.android.alarm.permission.SET_ALARM"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700509 android:permissionGroup="android.permission-group.DEVICE_ALARMS"
Patrick Scotta73c4b02010-09-22 08:16:53 -0400510 android:label="@string/permlab_setAlarm"
511 android:description="@string/permdesc_setAlarm"
512 android:protectionLevel="normal" />
513
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700514 <!-- =============================================================== -->
515 <!-- Permissions for accessing the user voicemail -->
516 <!-- =============================================================== -->
517 <eat-comment />
518
519 <!-- Used for permissions that provide access to the user voicemail box. -->
520 <permission-group android:name="android.permission-group.VOICEMAIL"
521 android:label="@string/permgrouplab_voicemail"
522 android:icon="@drawable/perm_group_voicemail"
523 android:description="@string/permgroupdesc_voicemail"
524 android:permissionGroupFlags="personalInfo"
525 android:priority="280" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700526
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100527 <!-- Allows an application to add voicemails into the system. -->
528 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700529 android:permissionGroup="android.permission-group.VOICEMAIL"
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100530 android:protectionLevel="dangerous"
531 android:label="@string/permlab_addVoicemail"
532 android:description="@string/permdesc_addVoicemail" />
533
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534 <!-- ======================================= -->
535 <!-- Permissions for accessing location info -->
536 <!-- ======================================= -->
537 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700538
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800539 <!-- Used for permissions that allow access to the user's current
540 location. -->
541 <permission-group android:name="android.permission-group.LOCATION"
542 android:label="@string/permgrouplab_location"
Dianne Hackborn99222d22012-05-06 16:30:15 -0700543 android:icon="@drawable/perm_group_location"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700544 android:description="@string/permgroupdesc_location"
545 android:permissionGroupFlags="personalInfo"
546 android:priority="330" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800547
Scott Main277b3522012-11-01 10:55:02 -0700548 <!-- Allows an app to access precise location from location sources such
549 as GPS, cell towers, and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800550 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
551 android:permissionGroup="android.permission-group.LOCATION"
552 android:protectionLevel="dangerous"
553 android:label="@string/permlab_accessFineLocation"
554 android:description="@string/permdesc_accessFineLocation" />
555
Scott Main277b3522012-11-01 10:55:02 -0700556 <!-- Allows an app to access approximate location derived from network location
557 sources such as cell towers and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
559 android:permissionGroup="android.permission-group.LOCATION"
560 android:protectionLevel="dangerous"
561 android:label="@string/permlab_accessCoarseLocation"
562 android:description="@string/permdesc_accessCoarseLocation" />
563
564 <!-- Allows an application to create mock location providers for testing -->
565 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700566 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700567 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 android:label="@string/permlab_accessMockLocation"
569 android:description="@string/permdesc_accessMockLocation" />
570
571 <!-- Allows an application to access extra location provider commands -->
572 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700573 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700574 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 android:label="@string/permlab_accessLocationExtraCommands"
576 android:description="@string/permdesc_accessLocationExtraCommands" />
577
Mike Lockwood275555c2009-05-01 11:30:34 -0400578 <!-- Allows an application to install a location provider into the Location Manager -->
579 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborne639da72012-02-21 15:11:13 -0800580 android:protectionLevel="signature|system"
Mike Lockwood275555c2009-05-01 11:30:34 -0400581 android:label="@string/permlab_installLocationProvider"
582 android:description="@string/permdesc_installLocationProvider" />
583
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800584 <!-- ======================================= -->
585 <!-- Permissions for accessing networks -->
586 <!-- ======================================= -->
587 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700588
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 <!-- Used for permissions that provide access to networking services. The
590 main permission here is internet access, but this is also an
591 appropriate group for accessing or modifying any network configuration
592 or other related network operations. -->
593 <permission-group android:name="android.permission-group.NETWORK"
594 android:label="@string/permgrouplab_network"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700595 android:icon="@drawable/perm_group_network"
596 android:description="@string/permgroupdesc_network"
597 android:priority="270" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598
599 <!-- Allows applications to open network sockets. -->
600 <permission android:name="android.permission.INTERNET"
601 android:permissionGroup="android.permission-group.NETWORK"
602 android:protectionLevel="dangerous"
603 android:description="@string/permdesc_createNetworkSockets"
604 android:label="@string/permlab_createNetworkSockets" />
605
606 <!-- Allows applications to access information about networks -->
607 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
608 android:permissionGroup="android.permission-group.NETWORK"
609 android:protectionLevel="normal"
610 android:description="@string/permdesc_accessNetworkState"
611 android:label="@string/permlab_accessNetworkState" />
612
613 <!-- Allows applications to access information about Wi-Fi networks -->
614 <permission android:name="android.permission.ACCESS_WIFI_STATE"
615 android:permissionGroup="android.permission-group.NETWORK"
616 android:protectionLevel="normal"
617 android:description="@string/permdesc_accessWifiState"
618 android:label="@string/permlab_accessWifiState" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700619
620 <!-- Allows applications to change Wi-Fi connectivity state -->
621 <permission android:name="android.permission.CHANGE_WIFI_STATE"
622 android:permissionGroup="android.permission-group.NETWORK"
623 android:protectionLevel="dangerous"
624 android:description="@string/permdesc_changeWifiState"
625 android:label="@string/permlab_changeWifiState" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700626
Robert Greenwalt8588e472011-11-08 10:12:25 -0800627 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +0900628 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
629 android:permissionGroup="android.permission-group.NETWORK"
630 android:protectionLevel="normal"
631 android:description="@string/permdesc_accessWimaxState"
632 android:label="@string/permlab_accessWimaxState" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700633
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700634 <!-- @hide -->
635 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700636 android:permissionGroup="android.permission-group.NETWORK"
637 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700638 android:description="@string/permdesc_changeWimaxState"
639 android:label="@string/permlab_changeWimaxState" />
640
641 <!-- ======================================= -->
642 <!-- Permissions for short range, peripheral networks -->
643 <!-- ======================================= -->
644 <eat-comment />
645
646 <!-- Used for permissions that provide access to other devices through Bluetooth.-->
647 <permission-group android:name="android.permission-group.BLUETOOTH_NETWORK"
648 android:label="@string/permgrouplab_bluetoothNetwork"
649 android:icon="@drawable/perm_group_bluetooth"
650 android:description="@string/permgroupdesc_bluetoothNetwork"
651 android:priority="260" />
652
653 <!-- Allows applications to connect to paired bluetooth devices -->
654 <permission android:name="android.permission.BLUETOOTH"
655 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
656 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657 android:description="@string/permdesc_bluetooth"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700658 android:label="@string/permlab_bluetooth" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700659
660 <!-- Allows applications to discover and pair bluetooth devices -->
661 <permission android:name="android.permission.BLUETOOTH_ADMIN"
662 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
663 android:protectionLevel="dangerous"
664 android:description="@string/permdesc_bluetoothAdmin"
665 android:label="@string/permlab_bluetoothAdmin" />
666
Matthew Xiefca9d632012-10-04 12:25:28 -0700667 <!-- Allows bluetooth stack to access files
668 @hide This should only be used by Bluetooth apk.
669 -->
670 <permission android:name="android.permission.BLUETOOTH_STACK"
671 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
672 android:protectionLevel="signature" />
673
Nick Pelly1df862a2011-02-15 13:34:38 -0800674 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700675 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700676 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700677 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700678 android:description="@string/permdesc_nfc"
679 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700680
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700681 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700682 @hide -->
683 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
684 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800685 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700686
Haoyu Baidb3c8672012-06-20 14:29:57 -0700687 <!-- @hide -->
688 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
689 android:permissionGroup="android.permission-group.NETWORK"
690 android:protectionLevel="signature|system" />
691
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 <!-- ================================== -->
693 <!-- Permissions for accessing accounts -->
694 <!-- ================================== -->
695 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700696
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700697 <!-- Permissions for direct access to the accounts managed
698 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800699 <permission-group android:name="android.permission-group.ACCOUNTS"
700 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700701 android:icon="@drawable/perm_group_accounts"
702 android:description="@string/permgroupdesc_accounts"
703 android:permissionGroupFlags="personalInfo"
704 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705
706 <!-- Allows access to the list of accounts in the Accounts Service -->
707 <permission android:name="android.permission.GET_ACCOUNTS"
708 android:permissionGroup="android.permission-group.ACCOUNTS"
709 android:protectionLevel="normal"
710 android:description="@string/permdesc_getAccounts"
711 android:label="@string/permlab_getAccounts" />
712
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700713 <!-- Allows an application to act as an AccountAuthenticator for
714 the AccountManager -->
715 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
716 android:permissionGroup="android.permission-group.ACCOUNTS"
717 android:protectionLevel="dangerous"
718 android:label="@string/permlab_authenticateAccounts"
719 android:description="@string/permdesc_authenticateAccounts" />
720
721 <!-- Allows an application to request authtokens from the AccountManager -->
722 <permission android:name="android.permission.USE_CREDENTIALS"
723 android:permissionGroup="android.permission-group.ACCOUNTS"
724 android:protectionLevel="dangerous"
725 android:label="@string/permlab_useCredentials"
726 android:description="@string/permdesc_useCredentials" />
727
728 <!-- Allows an application to manage the list of accounts in the AccountManager -->
729 <permission android:name="android.permission.MANAGE_ACCOUNTS"
730 android:permissionGroup="android.permission-group.ACCOUNTS"
731 android:protectionLevel="dangerous"
732 android:label="@string/permlab_manageAccounts"
733 android:description="@string/permdesc_manageAccounts" />
734
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700735 <!-- Allows applications to call into AccountAuthenticators. Only
736 the system can get this permission. -->
737 <permission android:name="android.permission.ACCOUNT_MANAGER"
738 android:permissionGroup="android.permission-group.ACCOUNTS"
739 android:protectionLevel="signature"
740 android:description="@string/permdesc_accountManagerService"
741 android:label="@string/permlab_accountManagerService" />
742
743 <!-- ================================== -->
744 <!-- Permissions for accessing hardware that may effect battery life-->
745 <!-- ================================== -->
746 <eat-comment />
747
748 <!-- Used for permissions that provide direct access to the hardware on
749 the device that has an effect on battery life. This includes vibrator,
750 flashlight, etc. -->
751
752 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
753 android:label="@string/permgrouplab_affectsBattery"
754 android:icon="@drawable/perm_group_affects_battery"
755 android:description="@string/permgroupdesc_affectsBattery"
756 android:priority="180" />
757
758 <!-- Allows applications to enter Wi-Fi Multicast mode -->
759 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
760 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
761 android:protectionLevel="dangerous"
762 android:description="@string/permdesc_changeWifiMulticastState"
763 android:label="@string/permlab_changeWifiMulticastState" />
764
765 <!-- Allows access to the vibrator -->
766 <permission android:name="android.permission.VIBRATE"
767 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
768 android:protectionLevel="normal"
769 android:label="@string/permlab_vibrate"
770 android:description="@string/permdesc_vibrate" />
771
772 <!-- Allows access to the flashlight -->
773 <permission android:name="android.permission.FLASHLIGHT"
774 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
775 android:protectionLevel="normal"
776 android:label="@string/permlab_flashlight"
777 android:description="@string/permdesc_flashlight" />
778
779 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
780 from dimming -->
781 <permission android:name="android.permission.WAKE_LOCK"
782 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
783 android:protectionLevel="normal"
784 android:label="@string/permlab_wakeLock"
785 android:description="@string/permdesc_wakeLock" />
786
787 <!-- ==================================================== -->
788 <!-- Permissions related to changing audio settings -->
789 <!-- ==================================================== -->
790
791 <!-- Used for permissions that provide direct access to speaker settings
792 the device. -->
793 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
794 android:label="@string/permgrouplab_audioSettings"
795 android:icon="@drawable/perm_group_audio_settings"
796 android:description="@string/permgroupdesc_audioSettings"
797 android:priority="130" />
798
799 <!-- Allows an application to modify global audio settings -->
800 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
801 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
802 android:protectionLevel="normal"
803 android:label="@string/permlab_modifyAudioSettings"
804 android:description="@string/permdesc_modifyAudioSettings" />
805
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 <!-- ================================== -->
807 <!-- Permissions for accessing hardware -->
808 <!-- ================================== -->
809 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700810
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 <!-- Used for permissions that provide direct access to the hardware on
812 the device. This includes audio, the camera, vibrator, etc. -->
813 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
814 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700815 android:description="@string/permgroupdesc_hardwareControls"
816 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817
Mike Lockwood02eb8742011-02-27 09:10:37 -0800818 <!-- Allows an application to manage preferences and permissions for USB devices
819 @hide -->
820 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400821 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800822 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800823 android:label="@string/permlab_manageUsb"
824 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400825
Mike Lockwood10bc1112011-01-10 08:24:08 -0500826 <!-- Allows an application to access the MTP USB kernel driver.
827 For use only by the device side MTP implementation.
828 @hide -->
829 <permission android:name="android.permission.ACCESS_MTP"
830 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800831 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500832 android:label="@string/permlab_accessMtp"
833 android:description="@string/permdesc_accessMtp" />
834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
836 <permission android:name="android.permission.HARDWARE_TEST"
837 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
838 android:protectionLevel="signature"
839 android:label="@string/permlab_hardware_test"
840 android:description="@string/permdesc_hardware_test" />
841
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500842 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
843 @hide -->
844 <permission android:name="android.permission.NET_ADMIN"
845 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
846 android:protectionLevel="signature" />
847
Jeff Sharkey098d5802012-04-26 17:30:34 -0700848 <!-- Allows registration for remote audio playback. @hide -->
849 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
850 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
851 android:protectionLevel="signature" />
852
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700854 <!-- Permissions associated with audio capture -->
855 <!-- =========================================== -->
856 <eat-comment />
857
858 <!-- Used for permissions that are associated with accessing
859 microphone audio from the device. Note that phone calls also capture audio
860 but are in a separate (more visible) permission group. -->
861 <permission-group android:name="android.permission-group.MICROPHONE"
862 android:label="@string/permgrouplab_microphone"
863 android:icon="@drawable/perm_group_microphone"
864 android:description="@string/permgroupdesc_microphone"
865 android:permissionGroupFlags="personalInfo"
866 android:priority="340" />
867
868 <!-- Allows an application to record audio -->
869 <permission android:name="android.permission.RECORD_AUDIO"
870 android:permissionGroup="android.permission-group.MICROPHONE"
871 android:protectionLevel="dangerous"
872 android:label="@string/permlab_recordAudio" />
873
874
875 <!-- =========================================== -->
876 <!-- Permissions associated with camera and image capture -->
877 <!-- =========================================== -->
878 <eat-comment />
879
880 <!-- Used for permissions that are associated with accessing
881 camera or capturing images/video from the device. -->
882 <permission-group android:name="android.permission-group.CAMERA"
883 android:label="@string/permgrouplab_camera"
884 android:icon="@drawable/perm_group_camera"
885 android:description="@string/permgroupdesc_camera"
886 android:permissionGroupFlags="personalInfo"
887 android:priority="350" />
888
889 <!-- Required to be able to access the camera device.
890 <p>This will automatically enforce the <a
891 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
892 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
893 If you do not require all camera features or can properly operate if a camera
894 is not available, then you must modify your manifest as appropriate in order to
895 install on devices that don't support all camera features.</p> -->
896 <permission android:name="android.permission.CAMERA"
897 android:permissionGroup="android.permission-group.CAMERA"
898 android:protectionLevel="dangerous"
899 android:label="@string/permlab_camera"
900 android:description="@string/permdesc_camera" />
901
902 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 <!-- Permissions associated with telephony state -->
904 <!-- =========================================== -->
905 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700906
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800907 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700908 telephony state: placing calls, intercepting outgoing calls, reading
909 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800910 <permission-group android:name="android.permission-group.PHONE_CALLS"
911 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700912 android:icon="@drawable/perm_group_phone_calls"
913 android:description="@string/permgroupdesc_phoneCalls"
914 android:permissionGroupFlags="personalInfo"
915 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800916
917 <!-- Allows an application to monitor, modify, or abort outgoing
918 calls. -->
919 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
920 android:permissionGroup="android.permission-group.PHONE_CALLS"
921 android:protectionLevel="dangerous"
922 android:label="@string/permlab_processOutgoingCalls"
923 android:description="@string/permdesc_processOutgoingCalls" />
924
925 <!-- Allows modification of the telephony state - power on, mmi, etc.
926 Does not include placing calls. -->
927 <permission android:name="android.permission.MODIFY_PHONE_STATE"
928 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800929 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 android:label="@string/permlab_modifyPhoneState"
931 android:description="@string/permdesc_modifyPhoneState" />
932
Scott Main2681faa2012-11-01 12:18:31 -0700933 <!-- Allows read only access to phone state.
934 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
935 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
936 minSdkVersion}</a> and <a
937 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
938 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
939 grants your app this permission. If you don't need this permission, be sure your <a
940 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
941 targetSdkVersion}</a> is 4 or higher. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 <permission android:name="android.permission.READ_PHONE_STATE"
943 android:permissionGroup="android.permission-group.PHONE_CALLS"
944 android:protectionLevel="dangerous"
945 android:label="@string/permlab_readPhoneState"
946 android:description="@string/permdesc_readPhoneState" />
947
Jake Hamby463f2212011-07-21 17:55:53 -0700948 <!-- Allows read access to privileged phone state.
949 @hide Used internally. -->
950 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
951 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800952 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -0700953
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700954 <!-- Allows an application to initiate a phone call without going through
955 the Dialer user interface for the user to confirm the call
956 being placed. -->
957 <permission android:name="android.permission.CALL_PHONE"
958 android:permissionGroup="android.permission-group.PHONE_CALLS"
959 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700960 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700961 android:label="@string/permlab_callPhone"
962 android:description="@string/permdesc_callPhone" />
963
964 <!-- Allows an application to use SIP service -->
965 <permission android:name="android.permission.USE_SIP"
966 android:permissionGroup="android.permission-group.PHONE_CALLS"
967 android:protectionLevel="dangerous"
968 android:description="@string/permdesc_use_sip"
969 android:label="@string/permlab_use_sip" />
970
San Mehat29b57e62009-04-23 09:18:32 -0700971 <!-- ================================== -->
972 <!-- Permissions for sdcard interaction -->
973 <!-- ================================== -->
974 <eat-comment />
975
976 <!-- Group of permissions that are related to SD card access. -->
977 <permission-group android:name="android.permission-group.STORAGE"
978 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700979 android:icon="@drawable/perm_group_storage"
980 android:description="@string/permgroupdesc_storage"
981 android:permissionGroupFlags="personalInfo"
982 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -0700983
Scott Main2681faa2012-11-01 12:18:31 -0700984 <!-- Allows an application to read from external storage.
985 <p>Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly
986 granted this permission.</p>
987 <p>Currently, this permission is not enforced and all apps still have access to read from
988 external storage without this permission. That will change in a future release and apps
989 will require this permission to read from external storage. So if your
990 app reads from the external storage, you should add this permission to your app now
991 to ensure that it continues to work on future versions of Android.</p>
992 <p>You can test your app with the permission enforced by either running your app on the
993 Android Emulator when running Android 4.1 or higher, or enabling <em>Protect USB
994 storage</em> under Developer options in the Settings app on a device running Android 4.1 or
995 higher.</p>
996 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
997 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
998 minSdkVersion}</a> and <a
999 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1000 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1001 grants your app this permission. If you don't need this permission, be sure your <a
1002 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1003 targetSdkVersion}</a> is 4 or higher.-->
Dianne Hackborn79245122012-03-12 10:51:26 -07001004 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001005 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -07001006 android:label="@string/permlab_sdcardRead"
1007 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -07001008 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -07001009
Scott Main2681faa2012-11-01 12:18:31 -07001010 <!-- Allows an application to write to external storage.
1011 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1012 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1013 minSdkVersion}</a> and <a
1014 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1015 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1016 grants your app this permission. If you don't need this permission, be sure your <a
1017 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1018 targetSdkVersion}</a> is 4 or higher. -->
San Mehat5a3a77d2009-06-01 09:25:28 -07001019 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -07001020 android:permissionGroup="android.permission-group.STORAGE"
1021 android:label="@string/permlab_sdcardWrite"
1022 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -07001023 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -07001024
Mike Lockwood1e23db42011-04-22 07:05:21 -07001025 <!-- Allows an application to write to internal media storage
1026 @hide -->
1027 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
1028 android:permissionGroup="android.permission-group.STORAGE"
1029 android:label="@string/permlab_mediaStorageWrite"
1030 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -08001031 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -07001032
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001033 <!-- ================================== -->
1034 <!-- Permissions for screenlock -->
1035 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001036 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001037
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001038 <!-- Group of permissions that are related to the screenlock. -->
1039 <permission-group android:name="android.permission-group.SCREENLOCK"
1040 android:label="@string/permgrouplab_storage"
1041 android:icon="@drawable/perm_group_screenlock"
1042 android:permissionGroupFlags="personalInfo"
1043 android:description="@string/permgroupdesc_storage"
1044 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001046 <!-- Allows applications to disable the keyguard -->
1047 <permission android:name="android.permission.DISABLE_KEYGUARD"
1048 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001050 android:description="@string/permdesc_disableKeyguard"
1051 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001052
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001053 <!-- ================================== -->
1054 <!-- Permissions to access other installed applications -->
1055 <!-- ================================== -->
1056 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001058 <!-- Group of permissions that are related to the other applications
1059 installed on the system. Examples include such as listing
1060 running apps, or killing background processes. -->
1061 <permission-group android:name="android.permission-group.APP_INFO"
1062 android:label="@string/permgrouplab_appInfo"
1063 android:icon="@drawable/perm_group_app_info"
1064 android:description="@string/permgroupdesc_appInfo"
1065 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001066
1067 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -07001068 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001069 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001070 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 android:protectionLevel="dangerous"
1072 android:label="@string/permlab_getTasks"
1073 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -07001074 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -07001075 across the users on the device, using singleton services and
1076 user-targeted broadcasts. This permission is not available to
1077 third party applications. -->
1078 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
1079 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1080 android:protectionLevel="signature|system|development"
1081 android:label="@string/permlab_interactAcrossUsers"
1082 android:description="@string/permdesc_interactAcrossUsers" />
1083
1084 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
1085 that removes restrictions on where broadcasts can be sent and allows other
1086 types of interactions. -->
1087 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1088 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1089 android:protectionLevel="signature"
1090 android:label="@string/permlab_interactAcrossUsersFull"
1091 android:description="@string/permdesc_interactAcrossUsersFull" />
1092
Dianne Hackborn8832c182012-09-17 17:20:24 -07001093 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001094 users on the device. This permission is not available to
1095 third party applications. -->
1096 <permission android:name="android.permission.MANAGE_USERS"
1097 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001098 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001099 android:label="@string/permlab_manageUsers"
1100 android:description="@string/permdesc_manageUsers" />
1101
Dianne Hackborn8238e712012-04-24 11:15:40 -07001102 <!-- Allows an application to get full detailed information about
1103 recently running tasks, with full fidelity to the real state.
1104 @hide -->
1105 <permission android:name="android.permission.GET_DETAILED_TASKS"
1106 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1107 android:protectionLevel="signature"
1108 android:label="@string/permlab_getDetailedTasks"
1109 android:description="@string/permdesc_getDetailedTasks" />
1110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 <!-- Allows an application to change the Z-order of tasks -->
1112 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001113 android:permissionGroup="android.permission-group.APP_INFO"
1114 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001115 android:label="@string/permlab_reorderTasks"
1116 android:description="@string/permdesc_reorderTasks" />
1117
Dianne Hackborn24a12102011-07-29 15:52:05 -07001118 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001119 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001120 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001121 android:protectionLevel="signature"
1122 android:label="@string/permlab_removeTasks"
1123 android:description="@string/permdesc_removeTasks" />
1124
Jeff Sharkey35be7562012-04-18 19:16:15 -07001125 <!-- Allows an application to start any activity, regardless of permission
1126 protection or exported state. @hide -->
1127 <permission android:name="android.permission.START_ANY_ACTIVITY"
1128 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1129 android:protectionLevel="signature"
1130 android:label="@string/permlab_startAnyActivity"
1131 android:description="@string/permdesc_startAnyActivity" />
1132
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001133 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1134 API is no longer supported. -->
1135 <permission android:name="android.permission.RESTART_PACKAGES"
1136 android:permissionGroup="android.permission-group.APP_INFO"
1137 android:protectionLevel="normal"
1138 android:label="@string/permlab_killBackgroundProcesses"
1139 android:description="@string/permdesc_killBackgroundProcesses" />
1140
1141 <!-- Allows an application to call
1142 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1143 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1144 android:permissionGroup="android.permission-group.APP_INFO"
1145 android:protectionLevel="normal"
1146 android:label="@string/permlab_killBackgroundProcesses"
1147 android:description="@string/permdesc_killBackgroundProcesses" />
1148
1149 <!-- ================================== -->
1150 <!-- Permissions affecting the display of other applications -->
1151 <!-- ================================== -->
1152 <eat-comment />
1153
1154 <!-- Group of permissions that allow manipulation of how
1155 another application displays UI to the user. -->
1156 <permission-group android:name="android.permission-group.DISPLAY"
1157 android:label="@string/permgrouplab_display"
1158 android:icon="@drawable/perm_group_display"
1159 android:description="@string/permgroupdesc_display"
1160 android:priority="190"/>
1161
1162 <!-- Allows an application to open windows using the type
1163 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1164 shown on top of all other applications. Very few applications
1165 should use this permission; these windows are intended for
1166 system-level interaction with the user. -->
1167 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1168 android:permissionGroup="android.permission-group.DISPLAY"
1169 android:protectionLevel="dangerous"
1170 android:label="@string/permlab_systemAlertWindow"
1171 android:description="@string/permdesc_systemAlertWindow" />
1172
1173 <!-- ================================== -->
1174 <!-- Permissions affecting the system wallpaper -->
1175 <!-- ================================== -->
1176 <eat-comment />
1177
1178 <!-- Group of permissions that allow manipulation of how
1179 another application displays UI to the user. -->
1180 <permission-group android:name="android.permission-group.WALLPAPER"
1181 android:label="@string/permgrouplab_wallpaper"
1182 android:icon="@drawable/perm_group_wallpaper"
1183 android:description="@string/permgroupdesc_wallpaper"
1184 android:priority="150" />
1185
1186 <!-- Allows applications to set the wallpaper -->
1187 <permission android:name="android.permission.SET_WALLPAPER"
1188 android:permissionGroup="android.permission-group.WALLPAPER"
1189 android:protectionLevel="normal"
1190 android:label="@string/permlab_setWallpaper"
1191 android:description="@string/permdesc_setWallpaper" />
1192
1193 <!-- Allows applications to set the wallpaper hints -->
1194 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1195 android:permissionGroup="android.permission-group.WALLPAPER"
1196 android:protectionLevel="normal"
1197 android:label="@string/permlab_setWallpaperHints"
1198 android:description="@string/permdesc_setWallpaperHints" />
1199
1200 <!-- ============================================ -->
1201 <!-- Permissions for changing the system clock -->
1202 <!-- ============================================ -->
1203 <eat-comment />
1204
1205 <!-- Group of permissions that are related to system clock. -->
1206 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1207 android:label="@string/permgrouplab_systemClock"
1208 android:icon="@drawable/perm_group_system_clock"
1209 android:description="@string/permgroupdesc_systemClock"
1210 android:priority="140" />
1211
1212 <!-- Allows applications to set the system time -->
1213 <permission android:name="android.permission.SET_TIME"
1214 android:protectionLevel="signature|system"
1215 android:label="@string/permlab_setTime"
1216 android:description="@string/permdesc_setTime" />
1217
1218 <!-- Allows applications to set the system time zone -->
1219 <permission android:name="android.permission.SET_TIME_ZONE"
1220 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1221 android:protectionLevel="normal"
1222 android:label="@string/permlab_setTimeZone"
1223 android:description="@string/permdesc_setTimeZone" />
1224
1225 <!-- ==================================================== -->
1226 <!-- Permissions related to changing status bar -->
1227 <!-- ==================================================== -->
1228
1229 <!-- Used for permissions that change the status bar -->
1230 <permission-group android:name="android.permission-group.STATUS_BAR"
1231 android:label="@string/permgrouplab_statusBar"
1232 android:icon="@drawable/perm_group_status_bar"
1233 android:description="@string/permgroupdesc_statusBar"
1234 android:priority="110" />
1235
1236 <!-- Allows an application to expand or collapse the status bar. -->
1237 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1238 android:permissionGroup="android.permission-group.STATUS_BAR"
1239 android:protectionLevel="normal"
1240 android:label="@string/permlab_expandStatusBar"
1241 android:description="@string/permdesc_expandStatusBar" />
1242
1243 <!-- ==================================================== -->
1244 <!-- Permissions related to accessing sync settings -->
1245 <!-- ==================================================== -->
1246
1247 <!-- Used for permissions that access the sync settings or sync
1248 related information. -->
1249 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1250 android:label="@string/permgrouplab_syncSettings"
1251 android:icon="@drawable/perm_group_sync_settings"
1252 android:description="@string/permgroupdesc_syncSettings"
1253 android:priority="120" />
1254
1255 <!-- Allows applications to read the sync settings -->
1256 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1257 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1258 android:protectionLevel="normal"
1259 android:description="@string/permdesc_readSyncSettings"
1260 android:label="@string/permlab_readSyncSettings" />
1261
1262 <!-- Allows applications to write the sync settings -->
1263 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1264 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1265 android:protectionLevel="normal"
1266 android:description="@string/permdesc_writeSyncSettings"
1267 android:label="@string/permlab_writeSyncSettings" />
1268
1269 <!-- Allows applications to read the sync stats -->
1270 <permission android:name="android.permission.READ_SYNC_STATS"
1271 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1272 android:protectionLevel="normal"
1273 android:description="@string/permdesc_readSyncStats"
1274 android:label="@string/permlab_readSyncStats" />
1275
1276
1277 <!-- ============================================ -->
1278 <!-- Permissions for low-level system interaction -->
1279 <!-- ============================================ -->
1280 <eat-comment />
1281
1282 <!-- Group of permissions that are related to system APIs. Many
1283 of these are not permissions the user will be expected to understand,
1284 and such permissions should generally be marked as "normal" protection
1285 level so they don't get displayed. This can also, however, be used
1286 for miscellaneous features that provide access to the operating system,
1287 such as writing the global system settings. -->
1288 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1289 android:label="@string/permgrouplab_systemTools"
1290 android:icon="@drawable/perm_group_system_tools"
1291 android:description="@string/permgroupdesc_systemTools"
1292 android:priority="100" />
1293
1294 <!-- @hide Change the screen compatibility mode of applications -->
1295 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1296 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1297 android:protectionLevel="signature"
1298 android:label="@string/permlab_setScreenCompatibility"
1299 android:description="@string/permdesc_setScreenCompatibility" />
1300
1301 <!-- Allows an application to access all multi-user external storage @hide -->
1302 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1303 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1304 android:label="@string/permlab_sdcardAccessAll"
1305 android:description="@string/permdesc_sdcardAccessAll"
1306 android:protectionLevel="signature" />
1307
1308 <!-- Allows an application to modify the current configuration, such
1309 as locale. -->
1310 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001311 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001312 android:protectionLevel="signature|system|development"
1313 android:label="@string/permlab_changeConfiguration"
1314 android:description="@string/permdesc_changeConfiguration" />
1315
1316 <!-- Allows an application to read or write the system settings. -->
1317 <permission android:name="android.permission.WRITE_SETTINGS"
1318 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1319 android:protectionLevel="normal"
1320 android:label="@string/permlab_writeSettings"
1321 android:description="@string/permdesc_writeSettings" />
1322
1323 <!-- Allows an application to modify the Google service map. -->
1324 <permission android:name="android.permission.WRITE_GSERVICES"
1325 android:protectionLevel="signature|system"
1326 android:label="@string/permlab_writeGservices"
1327 android:description="@string/permdesc_writeGservices" />
1328
Adrian Ludwig4c522352012-06-01 14:22:03 -07001329 <!-- @hide Change the screen compatibility mode of applications -->
1330 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1331 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1332 android:protectionLevel="signature"
1333 android:label="@string/permlab_setScreenCompatibility"
1334 android:description="@string/permdesc_setScreenCompatibility" />
1335
1336 <!-- Allows an application to modify the current configuration, such
1337 as locale. -->
1338 <permission android:name="android.permission.CHANGE_CONFIGURATION"
1339 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001340 android:protectionLevel="system|signature"
Adrian Ludwig4c522352012-06-01 14:22:03 -07001341 android:label="@string/permlab_changeConfiguration"
1342 android:description="@string/permdesc_changeConfiguration" />
1343
Dianne Hackborn03abb812010-01-04 18:43:19 -08001344 <!-- Allows an application to call
1345 {@link android.app.ActivityManager#forceStopPackage}.
1346 @hide -->
1347 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1348 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1349 android:protectionLevel="signature"
1350 android:label="@string/permlab_forceStopPackages"
1351 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001352
Dianne Hackborn24a12102011-07-29 15:52:05 -07001353 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001354 An active window is the window that has fired an accessibility event. -->
1355 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1356 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001357 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001358 android:label="@string/permlab_retrieve_window_content"
1359 android:description="@string/permdesc_retrieve_window_content" />
1360
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361 <!-- Modify the global animation scaling factor. -->
1362 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1363 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001364 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001365 android:label="@string/permlab_setAnimationScale"
1366 android:description="@string/permdesc_setAnimationScale" />
1367
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001368 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001369 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001371 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001372 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373 android:label="@string/permlab_persistentActivity"
1374 android:description="@string/permdesc_persistentActivity" />
1375
1376 <!-- Allows an application to find out the space used by any package. -->
1377 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1378 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1379 android:protectionLevel="normal"
1380 android:label="@string/permlab_getPackageSize"
1381 android:description="@string/permdesc_getPackageSize" />
1382
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001383 <!-- @deprecated No longer useful, see
1384 {@link android.content.pm.PackageManager#addPackageToPreferred}
1385 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001386 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1387 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001388 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389 android:label="@string/permlab_setPreferredApplications"
1390 android:description="@string/permdesc_setPreferredApplications" />
1391
1392 <!-- Allows an application to receive the
1393 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1394 broadcast after the system finishes booting. If you don't
1395 request this permission, you will not receive the broadcast at
1396 that time. Though holding this permission does not have any
1397 security implications, it can have a negative impact on the
1398 user experience by increasing the amount of time it takes the
1399 system to start and allowing applications to have themselves
1400 running without the user being aware of them. As such, you must
1401 explicitly declare your use of this facility to make that visible
1402 to the user. -->
1403 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001404 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405 android:protectionLevel="normal"
1406 android:label="@string/permlab_receiveBootCompleted"
1407 android:description="@string/permdesc_receiveBootCompleted" />
1408
1409 <!-- Allows an application to broadcast sticky intents. These are
1410 broadcasts whose data is held by the system after being finished,
1411 so that clients can quickly retrieve that data without having
1412 to wait for the next broadcast. -->
1413 <permission android:name="android.permission.BROADCAST_STICKY"
1414 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1415 android:protectionLevel="normal"
1416 android:label="@string/permlab_broadcastSticky"
1417 android:description="@string/permdesc_broadcastSticky" />
1418
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 <!-- Allows mounting and unmounting file systems for removable storage. -->
1420 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
1421 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001422 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423 android:label="@string/permlab_mount_unmount_filesystems"
1424 android:description="@string/permdesc_mount_unmount_filesystems" />
1425
1426 <!-- Allows formatting file systems for removable storage. -->
1427 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1428 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001429 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001430 android:label="@string/permlab_mount_format_filesystems"
1431 android:description="@string/permdesc_mount_format_filesystems" />
1432
San Mehat02735bc2010-01-26 15:18:08 -08001433 <!-- Allows access to ASEC non-destructive API calls
1434 @hide -->
1435 <permission android:name="android.permission.ASEC_ACCESS"
1436 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001437 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001438 android:label="@string/permlab_asec_access"
1439 android:description="@string/permdesc_asec_access" />
1440
1441 <!-- Allows creation of ASEC volumes
1442 @hide -->
1443 <permission android:name="android.permission.ASEC_CREATE"
1444 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001445 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001446 android:label="@string/permlab_asec_create"
1447 android:description="@string/permdesc_asec_create" />
1448
1449 <!-- Allows destruction of ASEC volumes
1450 @hide -->
1451 <permission android:name="android.permission.ASEC_DESTROY"
1452 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001453 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001454 android:label="@string/permlab_asec_destroy"
1455 android:description="@string/permdesc_asec_destroy" />
1456
1457 <!-- Allows mount / unmount of ASEC volumes
1458 @hide -->
1459 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1460 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001461 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001462 android:label="@string/permlab_asec_mount_unmount"
1463 android:description="@string/permdesc_asec_mount_unmount" />
1464
1465 <!-- Allows rename of ASEC volumes
1466 @hide -->
1467 <permission android:name="android.permission.ASEC_RENAME"
1468 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001469 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001470 android:label="@string/permlab_asec_rename"
1471 android:description="@string/permdesc_asec_rename" />
1472
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001473 <!-- Allows applications to write the apn settings -->
1474 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1475 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001476 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 android:description="@string/permdesc_writeApnSettings"
1478 android:label="@string/permlab_writeApnSettings" />
1479
Fred Quintana60307342009-03-24 22:48:12 -07001480 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 ContentProvider. -->
1482 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1483 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1484 android:label="@string/permlab_subscribedFeedsRead"
1485 android:description="@string/permdesc_subscribedFeedsRead"
1486 android:protectionLevel="normal" />
1487 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1488 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1489 android:label="@string/permlab_subscribedFeedsWrite"
1490 android:description="@string/permdesc_subscribedFeedsWrite"
1491 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001492
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 <!-- Allows applications to change network connectivity state -->
1494 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001495 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001496 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001497 android:description="@string/permdesc_changeNetworkState"
1498 android:label="@string/permlab_changeNetworkState" />
1499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001500 <!-- Allows an application to clear the caches of all installed
1501 applications on the device. -->
1502 <permission android:name="android.permission.CLEAR_APP_CACHE"
1503 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1504 android:protectionLevel="dangerous"
1505 android:label="@string/permlab_clearAppCache"
1506 android:description="@string/permdesc_clearAppCache" />
1507
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001508 <!-- Allows an application to use any media decoder when decoding for playback
1509 @hide -->
1510 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001511 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001512 android:label="@string/permlab_anyCodecForPlayback"
1513 android:description="@string/permdesc_anyCodecForPlayback" />
1514
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 <!-- ========================================= -->
1516 <!-- Permissions for special development tools -->
1517 <!-- ========================================= -->
1518 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001519
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001520 <!-- Group of permissions that are related to development features. These
1521 are not permissions that should appear in normal applications; they
1522 protect APIs that are intended only to be used for development
1523 purposes. -->
1524 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1525 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001526 android:description="@string/permgroupdesc_developmentTools"
1527 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528
Dianne Hackborne639da72012-02-21 15:11:13 -08001529 <!-- Allows an application to read or write the secure system settings. -->
1530 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1531 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1532 android:protectionLevel="signature|system|development"
1533 android:label="@string/permlab_writeSecureSettings"
1534 android:description="@string/permdesc_writeSecureSettings" />
1535
1536 <!-- Allows an application to retrieve state dump information from system
1537 services. -->
1538 <permission android:name="android.permission.DUMP"
1539 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1540 android:protectionLevel="signature|system|development"
1541 android:label="@string/permlab_dump"
1542 android:description="@string/permdesc_dump" />
1543
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001544 <!-- Allows an application to read the low-level system log files.
1545 Log entries can contain the user's private information,
1546 which is why this permission is not available to normal apps. -->
1547 <permission android:name="android.permission.READ_LOGS"
1548 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1549 android:protectionLevel="signature|system|development"
1550 android:label="@string/permlab_readLogs"
1551 android:description="@string/permdesc_readLogs" />
1552
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 <!-- Configure an application for debugging. -->
1554 <permission android:name="android.permission.SET_DEBUG_APP"
1555 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001556 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 android:label="@string/permlab_setDebugApp"
1558 android:description="@string/permdesc_setDebugApp" />
1559
1560 <!-- Allows an application to set the maximum number of (not needed)
1561 application processes that can be running. -->
1562 <permission android:name="android.permission.SET_PROCESS_LIMIT"
1563 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001564 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001565 android:label="@string/permlab_setProcessLimit"
1566 android:description="@string/permdesc_setProcessLimit" />
1567
1568 <!-- Allows an application to control whether activities are immediately
1569 finished when put in the background. -->
1570 <permission android:name="android.permission.SET_ALWAYS_FINISH"
1571 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001572 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 android:label="@string/permlab_setAlwaysFinish"
1574 android:description="@string/permdesc_setAlwaysFinish" />
1575
1576 <!-- Allow an application to request that a signal be sent to all persistent processes -->
1577 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1578 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001579 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580 android:label="@string/permlab_signalPersistentProcesses"
1581 android:description="@string/permdesc_signalPersistentProcesses" />
1582
1583 <!-- ==================================== -->
1584 <!-- Private (signature-only) permissions -->
1585 <!-- ==================================== -->
1586 <eat-comment />
1587
1588 <!-- Allows applications to RW to diagnostic resources. -->
1589 <permission android:name="android.permission.DIAGNOSTIC"
1590 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1591 android:protectionLevel="signature"
1592 android:description="@string/permdesc_diagnostic"
1593 android:label="@string/permlab_diagnostic" />
1594
1595 <!-- Allows an application to open, close, or disable the status bar
1596 and its icons. -->
1597 <permission android:name="android.permission.STATUS_BAR"
1598 android:label="@string/permlab_statusBar"
1599 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001600 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001601
Joe Onorato8bc6c512010-06-04 16:21:12 -04001602 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1603 @hide -->
1604 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1605 android:label="@string/permlab_statusBarService"
1606 android:description="@string/permdesc_statusBarService"
1607 android:protectionLevel="signature" />
1608
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001609 <!-- Allows an application to force a BACK operation on whatever is the
1610 top activity. -->
1611 <permission android:name="android.permission.FORCE_BACK"
1612 android:label="@string/permlab_forceBack"
1613 android:description="@string/permdesc_forceBack"
1614 android:protectionLevel="signature" />
1615
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001616 <!-- Allows an application to update device statistics. Not for
1617 use by third party apps. -->
1618 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001619 android:label="@string/permlab_updateBatteryStats"
1620 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001621 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001622
1623 <!-- Allows an application to open windows that are for use by parts
1624 of the system user interface. Not for use by third party apps. -->
1625 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1626 android:label="@string/permlab_internalSystemWindow"
1627 android:description="@string/permdesc_internalSystemWindow"
1628 android:protectionLevel="signature" />
1629
1630 <!-- Allows an application to manage (create, destroy,
1631 Z-order) application tokens in the window manager. This is only
1632 for use by the system. -->
1633 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1634 android:label="@string/permlab_manageAppTokens"
1635 android:description="@string/permdesc_manageAppTokens"
1636 android:protectionLevel="signature" />
1637
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001638 <!-- @hide Allows the application to temporarily freeze the screen for a
1639 full-screen transition. -->
1640 <permission android:name="android.permission.FREEZE_SCREEN"
1641 android:label="@string/permlab_freezeScreen"
1642 android:description="@string/permdesc_freezeScreen"
1643 android:protectionLevel="signature" />
1644
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 <!-- Allows an application to inject user events (keys, touch, trackball)
1646 into the event stream and deliver them to ANY window. Without this
1647 permission, you can only deliver events to windows in your own process.
1648 Very few applications should need to use this permission. -->
1649 <permission android:name="android.permission.INJECT_EVENTS"
1650 android:label="@string/permlab_injectEvents"
1651 android:description="@string/permdesc_injectEvents"
1652 android:protectionLevel="signature" />
1653
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001654 <!-- @hide Allows an application to register an input filter which filters the stream
1655 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1656 <permission android:name="android.permission.FILTER_EVENTS"
1657 android:label="@string/permlab_filter_events"
1658 android:description="@string/permdesc_filter_events"
1659 android:protectionLevel="signature" />
1660
1661 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1662 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1663 android:label="@string/permlab_retrieve_window_info"
1664 android:description="@string/permdesc_retrieve_window_info"
1665 android:protectionLevel="signature" />
1666
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001667 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1668 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1669 android:label="@string/permlab_temporary_enable_accessibility"
1670 android:description="@string/permdesc_temporary_enable_accessibility"
1671 android:protectionLevel="signature" />
1672
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001673 <!-- @hide Allows an application to magnify the content of a display. -->
1674 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1675 android:label="@string/permlab_magnify_display"
1676 android:description="@string/permdesc_magnify_display"
1677 android:protectionLevel="signature" />
1678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001679 <!-- Allows an application to watch and control how activities are
1680 started globally in the system. Only for is in debugging
1681 (usually the monkey command). -->
1682 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1683 android:label="@string/permlab_runSetActivityWatcher"
1684 android:description="@string/permdesc_runSetActivityWatcher"
1685 android:protectionLevel="signature" />
1686
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001687 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001688 to put the higher-level system there into a shutdown state.
1689 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001690 <permission android:name="android.permission.SHUTDOWN"
1691 android:label="@string/permlab_shutdown"
1692 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001693 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001694
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001695 <!-- Allows an application to tell the activity manager to temporarily
1696 stop application switches, putting it into a special mode that
1697 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001698 critical UI such as the home screen.
1699 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001700 <permission android:name="android.permission.STOP_APP_SWITCHES"
1701 android:label="@string/permlab_stopAppSwitches"
1702 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001703 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001704
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001705 <!-- Allows an application to retrieve the current state of keys and
Jeff Brownac143512012-04-05 18:57:33 -07001706 switches. This is only for use by the system.
1707 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001708 <permission android:name="android.permission.READ_INPUT_STATE"
1709 android:label="@string/permlab_readInputState"
1710 android:description="@string/permdesc_readInputState"
1711 android:protectionLevel="signature" />
1712
Dianne Hackbornd6847842010-01-12 18:14:19 -08001713 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1714 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001715 <permission android:name="android.permission.BIND_INPUT_METHOD"
1716 android:label="@string/permlab_bindInputMethod"
1717 android:description="@string/permdesc_bindInputMethod"
1718 android:protectionLevel="signature" />
1719
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001720 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001721 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001722 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1723 android:label="@string/permlab_bindAccessibilityService"
1724 android:description="@string/permdesc_bindAccessibilityService"
1725 android:protectionLevel="signature" />
1726
satok988323c2011-06-22 16:38:13 +09001727 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1728 to ensure that only the system can bind to it. -->
1729 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1730 android:label="@string/permlab_bindTextService"
1731 android:description="@string/permdesc_bindTextService"
1732 android:protectionLevel="signature" />
1733
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001734 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001735 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001736 <permission android:name="android.permission.BIND_VPN_SERVICE"
1737 android:label="@string/permlab_bindVpnService"
1738 android:description="@string/permdesc_bindVpnService"
1739 android:protectionLevel="signature" />
1740
Dianne Hackbornd6847842010-01-12 18:14:19 -08001741 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1742 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001743 <permission android:name="android.permission.BIND_WALLPAPER"
1744 android:label="@string/permlab_bindWallpaper"
1745 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001746 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001747
Dianne Hackbornd6847842010-01-12 18:14:19 -08001748 <!-- Must be required by device administration receiver, to ensure that only the
1749 system can interact with it. -->
1750 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1751 android:label="@string/permlab_bindDeviceAdmin"
1752 android:description="@string/permdesc_bindDeviceAdmin"
1753 android:protectionLevel="signature" />
1754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001755 <!-- Allows low-level access to setting the orientation (actually
1756 rotation) of the screen. Not for use by normal applications. -->
1757 <permission android:name="android.permission.SET_ORIENTATION"
1758 android:label="@string/permlab_setOrientation"
1759 android:description="@string/permdesc_setOrientation"
1760 android:protectionLevel="signature" />
1761
Jeff Brown1a84fd12011-06-02 01:26:32 -07001762 <!-- Allows low-level access to setting the pointer speed.
1763 Not for use by normal applications. -->
1764 <permission android:name="android.permission.SET_POINTER_SPEED"
1765 android:label="@string/permlab_setPointerSpeed"
1766 android:description="@string/permdesc_setPointerSpeed"
1767 android:protectionLevel="signature" />
1768
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001769 <!-- Allows low-level access to setting the keyboard layout.
Jeff Brown507f5582012-05-07 19:06:06 -07001770 Not for use by normal applications.
1771 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001772 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1773 android:label="@string/permlab_setKeyboardLayout"
1774 android:description="@string/permdesc_setKeyboardLayout"
1775 android:protectionLevel="signature" />
1776
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777 <!-- Allows an application to install packages. -->
1778 <permission android:name="android.permission.INSTALL_PACKAGES"
1779 android:label="@string/permlab_installPackages"
1780 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001781 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001782
1783 <!-- Allows an application to clear user data -->
1784 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1785 android:label="@string/permlab_clearAppUserData"
1786 android:description="@string/permdesc_clearAppUserData"
1787 android:protectionLevel="signature" />
1788
1789 <!-- Allows an application to delete cache files. -->
1790 <permission android:name="android.permission.DELETE_CACHE_FILES"
1791 android:label="@string/permlab_deleteCacheFiles"
1792 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001793 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794
1795 <!-- Allows an application to delete packages. -->
1796 <permission android:name="android.permission.DELETE_PACKAGES"
1797 android:label="@string/permlab_deletePackages"
1798 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001799 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800
Jeff Brownec7c78f2010-03-30 23:37:25 -07001801 <!-- Allows an application to move location of installed package.
1802 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001803 <permission android:name="android.permission.MOVE_PACKAGE"
1804 android:label="@string/permlab_movePackage"
1805 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001806 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001807
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001808 <!-- Allows an application to change whether an application component (other than its own) is
1809 enabled or not. -->
1810 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1811 android:label="@string/permlab_changeComponentState"
1812 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001813 android:protectionLevel="signature|system" />
1814
1815 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1816 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1817 android:label="@string/permlab_grantRevokePermissions"
1818 android:description="@string/permdesc_grantRevokePermissions"
1819 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820
1821 <!-- Allows an application to use SurfaceFlinger's low level features -->
1822 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1823 android:label="@string/permlab_accessSurfaceFlinger"
1824 android:description="@string/permdesc_accessSurfaceFlinger"
1825 android:protectionLevel="signature" />
1826
1827 <!-- Allows an application to take screen shots and more generally
1828 get access to the frame buffer data -->
1829 <permission android:name="android.permission.READ_FRAME_BUFFER"
1830 android:label="@string/permlab_readFrameBuffer"
1831 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001832 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001833
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001834 <!-- Allows an application to configure and connect to Wifi displays
1835 @hide -->
1836 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1837 android:label="@string/permlab_configureWifiDisplay"
1838 android:description="@string/permdesc_configureWifiDisplay"
1839 android:protectionLevel="signature" />
1840
1841 <!-- Allows an application to control low-level features of Wifi displays
1842 such as opening an RTSP socket. This permission should only be used
1843 by the display manager.
1844 @hide -->
1845 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1846 android:label="@string/permlab_controlWifiDisplay"
1847 android:description="@string/permdesc_controlWifiDisplay"
1848 android:protectionLevel="signature" />
1849
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001850 <!-- Required to be able to disable the device (very dangerous!). -->
1851 <permission android:name="android.permission.BRICK"
1852 android:label="@string/permlab_brick"
1853 android:description="@string/permdesc_brick"
1854 android:protectionLevel="signature" />
1855
1856 <!-- Required to be able to reboot the device. -->
1857 <permission android:name="android.permission.REBOOT"
1858 android:label="@string/permlab_reboot"
1859 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001860 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001861
1862 <!-- Allows low-level access to power management -->
1863 <permission android:name="android.permission.DEVICE_POWER"
1864 android:label="@string/permlab_devicePower"
1865 android:description="@string/permdesc_devicePower"
1866 android:protectionLevel="signature" />
1867
Dianne Hackborn8832c182012-09-17 17:20:24 -07001868 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001869 <permission android:name="android.permission.NET_TUNNELING"
1870 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1871 android:protectionLevel="signature" />
1872
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001873 <!-- Run as a manufacturer test application, running as the root user.
1874 Only available when the device is running in manufacturer test mode. -->
1875 <permission android:name="android.permission.FACTORY_TEST"
1876 android:label="@string/permlab_factoryTest"
1877 android:description="@string/permdesc_factoryTest"
1878 android:protectionLevel="signature" />
1879
1880 <!-- Allows an application to broadcast a notification that an application
1881 package has been removed. -->
1882 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1883 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1884 android:label="@string/permlab_broadcastPackageRemoved"
1885 android:description="@string/permdesc_broadcastPackageRemoved"
1886 android:protectionLevel="signature" />
1887
1888 <!-- Allows an application to broadcast an SMS receipt notification -->
1889 <permission android:name="android.permission.BROADCAST_SMS"
1890 android:permissionGroup="android.permission-group.MESSAGES"
1891 android:label="@string/permlab_broadcastSmsReceived"
1892 android:description="@string/permdesc_broadcastSmsReceived"
1893 android:protectionLevel="signature" />
1894
1895 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1896 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1897 android:permissionGroup="android.permission-group.MESSAGES"
1898 android:label="@string/permlab_broadcastWapPush"
1899 android:description="@string/permdesc_broadcastWapPush"
1900 android:protectionLevel="signature" />
1901
1902 <permission android:name="android.permission.MASTER_CLEAR"
1903 android:label="@string/permlab_masterClear"
1904 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08001905 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001906
1907 <!-- Allows an application to call any phone number, including emergency
1908 numbers, without going through the Dialer user interface for the user
1909 to confirm the call being placed. -->
1910 <permission android:name="android.permission.CALL_PRIVILEGED"
1911 android:label="@string/permlab_callPrivileged"
1912 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08001913 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914
Jim Miller767be5f2009-08-25 19:33:57 -07001915 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1916 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1917 android:label="@string/permlab_performCdmaProvisioning"
1918 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08001919 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07001920
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001921 <!-- Allows enabling/disabling location update notifications from
1922 the radio. Not for use by normal applications. -->
1923 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1924 android:label="@string/permlab_locationUpdates"
1925 android:description="@string/permdesc_locationUpdates"
Dianne Hackborne639da72012-02-21 15:11:13 -08001926 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927
1928 <!-- Allows read/write access to the "properties" table in the checkin
1929 database, to change values that get uploaded. -->
1930 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1931 android:label="@string/permlab_checkinProperties"
1932 android:description="@string/permdesc_checkinProperties"
Dianne Hackborne639da72012-02-21 15:11:13 -08001933 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934
1935 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001936 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001937 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1938 android:label="@string/permlab_pkgUsageStats"
1939 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001940 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001941
1942 <!-- Allows an application to collect battery statistics -->
1943 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001944 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001945 android:label="@string/permlab_batteryStats"
1946 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001947 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001948
Christopher Tate181fafa2009-05-14 11:12:14 -07001949 <!-- Allows an application to control the backup and restore process
1950 @hide pending API council -->
1951 <permission android:name="android.permission.BACKUP"
1952 android:label="@string/permlab_backup"
1953 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08001954 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001955
Christopher Tate4a627c72011-04-01 14:43:32 -07001956 <!-- Allows a package to launch the secure full-backup confirmation UI.
1957 ONLY the system process may hold this permission.
1958 @hide -->
1959 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
1960 android:label="@string/permlab_confirm_full_backup"
1961 android:description="@string/permdesc_confirm_full_backup"
1962 android:protectionLevel="signature" />
1963
Winson Chung81f39eb2011-01-11 18:05:01 -08001964 <!-- Must be required by a {@link android.widget.RemoteViewsService},
1965 to ensure that only the system can bind to it. -->
1966 <permission android:name="android.permission.BIND_REMOTEVIEWS"
1967 android:label="@string/permlab_bindRemoteViews"
1968 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08001969 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08001970
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001971 <!-- Allows an application to tell the AppWidget service which application
1972 can access AppWidget's data. The normal user flow is that a user
1973 picks an AppWidget to go into a particular host, thereby giving that
1974 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975 An application that has this permission should honor that contract.
1976 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001977 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1979 android:label="@string/permlab_bindGadget"
1980 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08001981 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982
Michael Jurkafc753c02012-10-30 18:30:52 -07001983 <!-- Private permission, to restrict who can bring up a dialog to add a new
1984 keyguard widget
1985 @hide -->
1986 <permission android:name="android.permission.BIND_KEYGUARD_APPWIDGET"
1987 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1988 android:protectionLevel="signature|system" />
1989
Michael Jurka61a5b012012-04-13 10:39:45 -07001990 <!-- Internal permission allowing an application to query/set which
1991 applications can bind AppWidgets.
1992 @hide -->
1993 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
1994 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1995 android:protectionLevel="signature|system" />
1996
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997 <!-- Allows applications to change the background data setting
1998 @hide pending API council -->
1999 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
2000 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2001 android:protectionLevel="signature"
2002 android:description="@string/permdesc_changeBackgroundDataSetting"
2003 android:label="@string/permlab_changeBackgroundDataSetting" />
2004
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002005 <!-- This permission can be used on content providers to allow the global
2006 search system to access their data. Typically it used when the
2007 provider has some permissions protecting it (which global search
2008 would not be expected to hold), and added as a read-only permission
2009 to the path in the provider where global search queries are
2010 performed. This permission can not be held by regular applications;
2011 it is used by applications to protect themselves from everyone else
2012 besides global search. -->
2013 <permission android:name="android.permission.GLOBAL_SEARCH"
2014 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002015 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002016
2017 <!-- Internal permission protecting access to the global search
2018 system: ensures that only the system can access the provider
2019 to perform queries (since this otherwise provides unrestricted
2020 access to a variety of content providers), and to write the
2021 search statistics (to keep applications from gaming the source
2022 ranking).
2023 @hide -->
2024 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
2025 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2026 android:protectionLevel="signature" />
2027
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002028 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07002029 @hide XXX Change to signature once the picker is moved to its
2030 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002031 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
2032 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002033 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002034
John Spurlockf4f6b4c2012-08-25 12:08:03 -04002035 <!-- Allows applications to read dream settings and dream state.
2036 @hide -->
2037 <permission android:name="android.permission.READ_DREAM_STATE"
2038 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2039 android:protectionLevel="signature" />
2040
2041 <!-- Allows applications to write dream settings, and start or stop dreaming.
2042 @hide -->
2043 <permission android:name="android.permission.WRITE_DREAM_STATE"
2044 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2045 android:protectionLevel="signature" />
2046
Jeff Brownec7c78f2010-03-30 23:37:25 -07002047 <!-- Allow an application to read and write the cache partition.
2048 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002049 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
2050 android:label="@string/permlab_cache_filesystem"
2051 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08002052 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002053
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08002054 <!-- Must be required by default container service so that only
2055 the system can bind to it and use it to copy
2056 protected data to secure containers or files
2057 accessible to the system.
2058 @hide -->
2059 <permission android:name="android.permission.COPY_PROTECTED_DATA"
2060 android:label="@string/permlab_copyProtectedData"
2061 android:description="@string/permlab_copyProtectedData"
2062 android:protectionLevel="signature" />
2063
Jason parks8888c592011-01-20 22:46:41 -06002064 <!-- Internal permission protecting access to the encryption methods
2065 @hide
2066 -->
2067 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08002068 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06002069
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002070 <!-- Allows an application to read historical network usage for
2071 specific networks and applications. @hide -->
2072 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
2073 android:label="@string/permlab_readNetworkUsageHistory"
2074 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08002075 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002076
2077 <!-- Allows an application to manage network policies (such as warning and disable
2078 limits) and to define application-specific rules. @hide -->
2079 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
2080 android:label="@string/permlab_manageNetworkPolicy"
2081 android:description="@string/permdesc_manageNetworkPolicy"
2082 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06002083
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002084 <!-- Allows an application to account its network traffic against other UIDs. Used
2085 by system services like download manager and media server. Not for use by
2086 third party apps. @hide -->
2087 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
2088 android:label="@string/permlab_modifyNetworkAccounting"
2089 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08002090 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002091
Tom Taylorb0381682011-08-11 14:27:25 -07002092 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002093 @hide Used internally.
2094 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002095 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002096 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002097 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002098
Dianne Hackborn8832c182012-09-17 17:20:24 -07002099 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002100 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002101 -->
2102 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2103 android:label="@string/permlab_packageVerificationAgent"
2104 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002105 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002106
2107 <!-- Must be required by package verifier receiver, to ensure that only the
2108 system can interact with it.
2109 @hide
2110 -->
2111 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2112 android:label="@string/permlab_bindPackageVerifier"
2113 android:description="@string/permdesc_bindPackageVerifier"
2114 android:protectionLevel="signature" />
2115
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002116 <!-- Allows applications to access serial ports via the SerialManager.
2117 @hide -->
2118 <permission android:name="android.permission.SERIAL_PORT"
2119 android:label="@string/permlab_serialPort"
2120 android:description="@string/permdesc_serialPort"
Geremy Condrac29f35b2012-10-17 14:06:31 -07002121 android:protectionLevel="signature|system" />
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002122
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002123 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2124 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2125 in particular ActivityManagerService#getContentProviderExternal(String) and
2126 ActivityManagerService#removeContentProviderExternal(String).
2127 @hide
2128 -->
2129 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2130 android:label="@string/permlab_accessContentProvidersExternally"
2131 android:description="@string/permdesc_accessContentProvidersExternally"
2132 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002133 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2134 OTA reboot *not* occur while the lock is held.
2135 @hide -->
2136 <permission android:name="android.permission.UPDATE_LOCK"
2137 android:label="@string/permlab_updateLock"
2138 android:description="@string/permdesc_updateLock"
2139 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002140
Christopher Tate4a627c72011-04-01 14:43:32 -07002141 <!-- The system process is explicitly the only one allowed to launch the
2142 confirmation UI for full backup/restore -->
2143 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 <application android:process="system"
2146 android:persistent="true"
2147 android:hasCode="false"
2148 android:label="@string/android_system_label"
2149 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002150 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002151 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002152 android:icon="@drawable/ic_launcher_android"
2153 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002154 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002155 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002156 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002157 android:excludeFromRecents="true"
2158 android:multiprocess="true">
2159 <intent-filter>
2160 <action android:name="android.intent.action.CHOOSER" />
2161 <category android:name="android.intent.category.DEFAULT" />
2162 </intent-filter>
2163 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002164 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002165 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002166 android:label="@string/heavy_weight_switcher_title"
2167 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002168 android:excludeFromRecents="true"
2169 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002170 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002171 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002172 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2173 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002174 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002175 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2176 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002177 android:excludeFromRecents="true"
2178 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002179 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002180
Fred Quintana33269202009-04-20 16:05:10 -07002181 <activity android:name="android.accounts.ChooseAccountActivity"
2182 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002183 android:exported="true"
2184 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002185 android:label="@string/choose_account_label"
2186 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002187 </activity>
2188
Fred Quintana1121bb52011-09-14 23:19:35 -07002189 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2190 android:excludeFromRecents="true"
2191 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002192 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002193 android:label="@string/choose_account_label"
2194 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002195 </activity>
2196
2197 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2198 android:excludeFromRecents="true"
Jatin Lodhia856b01e2012-09-28 10:53:37 -07002199 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002200 android:label="@string/choose_account_label"
2201 android:process=":ui">
2202 </activity>
2203
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002204 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2205 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002206 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002207 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2208 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002209 </activity>
2210
Fred Quintanab19e62a2010-12-16 13:54:43 -08002211 <activity android:name="android.content.SyncActivityTooManyDeletes"
2212 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002213 android:label="@string/sync_too_many_deletes"
2214 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002215 </activity>
2216
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002217 <activity android:name="com.android.server.ShutdownActivity"
2218 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002219 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002220 <intent-filter>
2221 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2222 <category android:name="android.intent.category.DEFAULT" />
2223 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002224 <intent-filter>
2225 <action android:name="android.intent.action.REBOOT" />
2226 <category android:name="android.intent.category.DEFAULT" />
2227 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002228 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002229
Danke Xie22d1f9f2009-08-18 18:28:45 -04002230 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002231 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002232 android:excludeFromRecents="true"
2233 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002234 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002235
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002236 <receiver android:name="com.android.server.BootReceiver"
2237 android:primaryUserOnly="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002238 <intent-filter>
2239 <action android:name="android.intent.action.BOOT_COMPLETED" />
2240 </intent-filter>
2241 </receiver>
2242
Geremy Condrab6310842012-08-23 22:00:15 -07002243 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2244 <intent-filter>
2245 <action android:name="android.intent.action.UPDATE_PINS" />
2246 </intent-filter>
2247 </receiver>
2248
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002249 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2250 <intent-filter>
2251 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2252 </intent-filter>
2253 </receiver>
2254
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002255 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002256 android:permission="android.permission.MASTER_CLEAR"
2257 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002259 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2260 <action android:name="android.intent.action.MASTER_CLEAR" />
2261
2262 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002263 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002264 <category android:name="android.intent.category.MASTER_CLEAR" />
2265 </intent-filter>
2266 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002267
2268 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2269 android:permission="android.permission.MASTER_CLEAR"
2270 android:exported="true" />
2271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002272 </application>
2273
2274</manifest>