blob: a16f2ae628a121bcdf805b6b551e5287d963b8e0 [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" />
146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 <!-- ====================================== -->
148 <!-- Permissions for things that cost money -->
149 <!-- ====================================== -->
150 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 <!-- Used for permissions that can be used to make the user spend money
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700153 without their direct involvement. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 <permission-group android:name="android.permission-group.COST_MONEY"
155 android:label="@string/permgrouplab_costMoney"
156 android:description="@string/permgroupdesc_costMoney" />
157
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 <!-- ================================== -->
159 <!-- Permissions for accessing messages -->
160 <!-- ================================== -->
161 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700162
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 <!-- Used for permissions that allow an application to send messages
164 on behalf of the user or intercept messages being received by the
165 user. This is primarily intended for SMS/MMS messaging, such as
166 receiving or reading an MMS. -->
167 <permission-group android:name="android.permission-group.MESSAGES"
168 android:label="@string/permgrouplab_messages"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700169 android:icon="@drawable/perm_group_messages"
170 android:description="@string/permgroupdesc_messages"
171 android:permissionGroupFlags="personalInfo"
172 android:priority="360"/>
173
174 <!-- Allows an application to send SMS messages. -->
175 <permission android:name="android.permission.SEND_SMS"
176 android:permissionGroup="android.permission-group.MESSAGES"
177 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700178 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700179 android:label="@string/permlab_sendSms"
180 android:description="@string/permdesc_sendSms" />
181
182 <!-- Allows an application to send SMS messages via the Messaging app with no user
183 input or confirmation.
184 @hide -->
185 <permission android:name="android.permission.SEND_SMS_NO_CONFIRMATION"
186 android:permissionGroup="android.permission-group.MESSAGES"
187 android:protectionLevel="signature|system"
188 android:label="@string/permlab_sendSmsNoConfirmation"
189 android:description="@string/permdesc_sendSmsNoConfirmation" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190
191 <!-- Allows an application to monitor incoming SMS messages, to record
192 or perform processing on them. -->
193 <permission android:name="android.permission.RECEIVE_SMS"
194 android:permissionGroup="android.permission-group.MESSAGES"
195 android:protectionLevel="dangerous"
196 android:label="@string/permlab_receiveSms"
197 android:description="@string/permdesc_receiveSms" />
198
199 <!-- Allows an application to monitor incoming MMS messages, to record
200 or perform processing on them. -->
201 <permission android:name="android.permission.RECEIVE_MMS"
202 android:permissionGroup="android.permission-group.MESSAGES"
203 android:protectionLevel="dangerous"
204 android:label="@string/permlab_receiveMms"
205 android:description="@string/permdesc_receiveMms" />
206
Jake Hambyab79ee42011-04-26 16:26:46 -0700207 <!-- Allows an application to receive emergency cell broadcast messages,
208 to record or display them to the user. Reserved for system apps.
209 @hide Pending API council approval -->
210 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
211 android:permissionGroup="android.permission-group.MESSAGES"
Dianne Hackborne639da72012-02-21 15:11:13 -0800212 android:protectionLevel="signature|system"
Jake Hambyab79ee42011-04-26 16:26:46 -0700213 android:label="@string/permlab_receiveEmergencyBroadcast"
214 android:description="@string/permdesc_receiveEmergencyBroadcast" />
215
Jake Hambyc3296ff2012-04-18 12:32:18 -0700216 <!-- Allows an application to read previously received cell broadcast
217 messages and to register a content observer to get notifications when
218 a cell broadcast has been received and added to the database. For
219 emergency alerts, the database is updated immediately after the
220 alert dialog and notification sound/vibration/speech are presented.
221 The "read" column is then updated after the user dismisses the alert.
222 This enables supplementary emergency assistance apps to start loading
223 additional emergency information (if Internet access is available)
224 when the alert is first received, and to delay presenting the info
225 to the user until after the initial alert dialog is dismissed.
226 @hide Pending API council approval -->
227 <permission android:name="android.permission.READ_CELL_BROADCASTS"
228 android:permissionGroup="android.permission-group.MESSAGES"
229 android:protectionLevel="dangerous"
230 android:label="@string/permlab_readCellBroadcasts"
231 android:description="@string/permdesc_readCellBroadcasts" />
232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 <!-- Allows an application to read SMS messages. -->
234 <permission android:name="android.permission.READ_SMS"
235 android:permissionGroup="android.permission-group.MESSAGES"
236 android:protectionLevel="dangerous"
237 android:label="@string/permlab_readSms"
238 android:description="@string/permdesc_readSms" />
239
240 <!-- Allows an application to write SMS messages. -->
241 <permission android:name="android.permission.WRITE_SMS"
242 android:permissionGroup="android.permission-group.MESSAGES"
243 android:protectionLevel="dangerous"
244 android:label="@string/permlab_writeSms"
245 android:description="@string/permdesc_writeSms" />
246
247 <!-- Allows an application to monitor incoming WAP push messages. -->
248 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
249 android:permissionGroup="android.permission-group.MESSAGES"
250 android:protectionLevel="dangerous"
251 android:label="@string/permlab_receiveWapPush"
252 android:description="@string/permdesc_receiveWapPush" />
253
254 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700255 <!-- Permissions for accessing social info (contacts and social) -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 <!-- =============================================================== -->
257 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700258
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700259 <!-- Used for permissions that provide access to the user's social connections,
260 such as contacts, call logs, social stream, etc. This includes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 both reading and writing of this data (which should generally be
262 expressed as two distinct permissions). -->
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700263
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700264 <permission-group android:name="android.permission-group.SOCIAL_INFO"
265 android:label="@string/permgrouplab_socialInfo"
266 android:icon="@drawable/perm_group_social_info"
267 android:description="@string/permgroupdesc_socialInfo"
268 android:permissionGroupFlags="personalInfo"
269 android:priority="320" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270
271 <!-- Allows an application to read the user's contacts data. -->
272 <permission android:name="android.permission.READ_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700273 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 android:protectionLevel="dangerous"
275 android:label="@string/permlab_readContacts"
276 android:description="@string/permdesc_readContacts" />
277
278 <!-- Allows an application to write (but not read) the user's
279 contacts data. -->
280 <permission android:name="android.permission.WRITE_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700281 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 android:protectionLevel="dangerous"
283 android:label="@string/permlab_writeContacts"
284 android:description="@string/permdesc_writeContacts" />
285
Subir Jhanb603af612012-08-06 17:19:22 -0700286 <!-- Allows an application to execute contacts directory search.
287 This should only be used by ContactsProvider. -->
288 <!-- @hide -->
289 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
290 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Subir Jhanb0224cca2012-08-16 17:04:54 -0700291 android:protectionLevel="signature|system" />
Subir Jhanb603af612012-08-06 17:19:22 -0700292
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700293 <!-- Allows an application to read the user's call log. -->
294 <permission android:name="android.permission.READ_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700295 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700296 android:protectionLevel="dangerous"
297 android:label="@string/permlab_readCallLog"
298 android:description="@string/permdesc_readCallLog" />
299
300 <!-- Allows an application to write (but not read) the user's
301 contacts data. -->
302 <permission android:name="android.permission.WRITE_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700303 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700304 android:protectionLevel="dangerous"
305 android:label="@string/permlab_writeCallLog"
306 android:description="@string/permdesc_writeCallLog" />
307
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700308 <!-- Allows an application to read from the user's social stream. -->
309 <permission android:name="android.permission.READ_SOCIAL_STREAM"
310 android:permissionGroup="android.permission-group.SOCIAL_INFO"
311 android:protectionLevel="dangerous"
312 android:label="@string/permlab_readSocialStream"
313 android:description="@string/permdesc_readSocialStream" />
314
315 <!-- Allows an application to write (but not read) the user's
316 social stream data. -->
317 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
318 android:permissionGroup="android.permission-group.SOCIAL_INFO"
319 android:protectionLevel="dangerous"
320 android:label="@string/permlab_writeSocialStream"
321 android:description="@string/permdesc_writeSocialStream" />
322
323 <!-- =============================================================== -->
324 <!-- Permissions for accessing information about the device owner -->
325 <!-- =============================================================== -->
326 <eat-comment />
327
328 <!-- Used for permissions that provide access to information about the device
329 user such as profile information. This includes both reading and
330 writing of this data (which should generally be expressed as two
331 distinct permissions). -->
332 <permission-group android:name="android.permission-group.PERSONAL_INFO"
333 android:label="@string/permgrouplab_personalInfo"
334 android:icon="@drawable/perm_group_personal_info"
335 android:description="@string/permgroupdesc_personalInfo"
336 android:permissionGroupFlags="personalInfo"
337 android:priority="310" />
338
Dave Santoro43251332011-05-11 11:39:54 -0700339 <!-- Allows an application to read the user's personal profile data. -->
340 <permission android:name="android.permission.READ_PROFILE"
341 android:permissionGroup="android.permission-group.PERSONAL_INFO"
342 android:protectionLevel="dangerous"
343 android:label="@string/permlab_readProfile"
344 android:description="@string/permdesc_readProfile" />
345
346 <!-- Allows an application to write (but not read) the user's
347 personal profile data. -->
348 <permission android:name="android.permission.WRITE_PROFILE"
349 android:permissionGroup="android.permission-group.PERSONAL_INFO"
350 android:protectionLevel="dangerous"
351 android:label="@string/permlab_writeProfile"
352 android:description="@string/permdesc_writeProfile" />
353
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700354 <!-- =============================================================== -->
355 <!-- Permissions for accessing the device calendar -->
356 <!-- =============================================================== -->
357 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -0700358
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700359 <!-- Used for permissions that provide access to the device
360 calendar to create / view events.-->
361 <permission-group android:name="android.permission-group.CALENDAR"
362 android:label="@string/permgrouplab_calendar"
363 android:icon="@drawable/perm_group_calendar"
364 android:description="@string/permgroupdesc_calendar"
365 android:permissionGroupFlags="personalInfo"
366 android:priority="290" />
Dave Santoro0b61f592011-10-03 18:25:26 -0700367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 <!-- Allows an application to read the user's calendar data. -->
369 <permission android:name="android.permission.READ_CALENDAR"
370 android:permissionGroup="android.permission-group.PERSONAL_INFO"
371 android:protectionLevel="dangerous"
372 android:label="@string/permlab_readCalendar"
373 android:description="@string/permdesc_readCalendar" />
374
375 <!-- Allows an application to write (but not read) the user's
376 calendar data. -->
377 <permission android:name="android.permission.WRITE_CALENDAR"
378 android:permissionGroup="android.permission-group.PERSONAL_INFO"
379 android:protectionLevel="dangerous"
380 android:label="@string/permlab_writeCalendar"
381 android:description="@string/permdesc_writeCalendar" />
382
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700383 <!-- =============================================================== -->
384 <!-- Permissions for accessing the user dictionary-->
385 <!-- =============================================================== -->
386 <eat-comment />
387
388 <!-- Used for permissions that provide access to the user
389 calendar to create / view events.-->
390 <permission-group android:name="android.permission-group.USER_DICTIONARY"
391 android:label="@string/permgrouplab_dictionary"
392 android:icon="@drawable/perm_group_user_dictionary"
393 android:description="@string/permgroupdesc_dictionary"
394 android:permissionGroupFlags="personalInfo"
395 android:priority="170" />
396
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700398 really only be required by an IME, or a dictionary editor like
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700399 the Settings app. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 <permission android:name="android.permission.READ_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700401 android:permissionGroup="android.permission-group.USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 android:protectionLevel="dangerous"
403 android:label="@string/permlab_readDictionary"
404 android:description="@string/permdesc_readDictionary" />
405
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700406 <!-- Used for permissions that provide access to the user
407 calendar to create / view events.-->
408 <permission-group android:name="android.permission-group.WRITE_USER_DICTIONARY"
409 android:label="@string/permgrouplab_writeDictionary"
410 android:icon="@drawable/perm_group_user_dictionary_write"
411 android:description="@string/permgroupdesc_writeDictionary"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700412 android:priority="160" />
413
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700414 <!-- Allows an application to write to the user dictionary. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700416 android:permissionGroup="android.permission-group.WRITE_USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 android:protectionLevel="normal"
418 android:label="@string/permlab_writeDictionary"
419 android:description="@string/permdesc_writeDictionary" />
420
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700421 <!-- =============================================================== -->
422 <!-- Permissions for accessing the user bookmarks -->
423 <!-- =============================================================== -->
424 <eat-comment />
425
426 <!-- Used for permissions that provide access to the user
427 bookmarks and browser history.-->
428 <permission-group android:name="android.permission-group.BOOKMARKS"
429 android:label="@string/permgrouplab_bookmarks"
430 android:icon="@drawable/perm_group_bookmarks"
431 android:description="@string/permgroupdesc_bookmarks"
432 android:permissionGroupFlags="personalInfo"
433 android:priority="300" />
434
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400435 <!-- Allows an application to read (but not write) the user's
436 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400437 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700438 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400439 android:label="@string/permlab_readHistoryBookmarks"
440 android:description="@string/permdesc_readHistoryBookmarks"
441 android:protectionLevel="dangerous" />
442
443 <!-- Allows an application to write (but not read) the user's
444 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400445 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700446 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400447 android:label="@string/permlab_writeHistoryBookmarks"
448 android:description="@string/permdesc_writeHistoryBookmarks"
449 android:protectionLevel="dangerous" />
450
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700451 <!-- =============================================================== -->
452 <!-- Permissions for setting the device alarm -->
453 <!-- =============================================================== -->
454 <eat-comment />
455
456 <!-- Used for permissions that provide access to the user voicemail box. -->
457 <permission-group android:name="android.permission-group.DEVICE_ALARMS"
458 android:label="@string/permgrouplab_deviceAlarms"
459 android:icon="@drawable/perm_group_device_alarms"
460 android:description="@string/permgroupdesc_deviceAlarms"
461 android:permissionGroupFlags="personalInfo"
462 android:priority="210" />
463
Patrick Scotta73c4b02010-09-22 08:16:53 -0400464 <!-- Allows an application to broadcast an Intent to set an alarm for the
465 user. -->
466 <permission android:name="com.android.alarm.permission.SET_ALARM"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700467 android:permissionGroup="android.permission-group.DEVICE_ALARMS"
Patrick Scotta73c4b02010-09-22 08:16:53 -0400468 android:label="@string/permlab_setAlarm"
469 android:description="@string/permdesc_setAlarm"
470 android:protectionLevel="normal" />
471
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700472 <!-- =============================================================== -->
473 <!-- Permissions for accessing the user voicemail -->
474 <!-- =============================================================== -->
475 <eat-comment />
476
477 <!-- Used for permissions that provide access to the user voicemail box. -->
478 <permission-group android:name="android.permission-group.VOICEMAIL"
479 android:label="@string/permgrouplab_voicemail"
480 android:icon="@drawable/perm_group_voicemail"
481 android:description="@string/permgroupdesc_voicemail"
482 android:permissionGroupFlags="personalInfo"
483 android:priority="280" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700484
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100485 <!-- Allows an application to add voicemails into the system. -->
486 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700487 android:permissionGroup="android.permission-group.VOICEMAIL"
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100488 android:protectionLevel="dangerous"
489 android:label="@string/permlab_addVoicemail"
490 android:description="@string/permdesc_addVoicemail" />
491
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 <!-- ======================================= -->
493 <!-- Permissions for accessing location info -->
494 <!-- ======================================= -->
495 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700496
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 <!-- Used for permissions that allow access to the user's current
498 location. -->
499 <permission-group android:name="android.permission-group.LOCATION"
500 android:label="@string/permgrouplab_location"
Dianne Hackborn99222d22012-05-06 16:30:15 -0700501 android:icon="@drawable/perm_group_location"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700502 android:description="@string/permgroupdesc_location"
503 android:permissionGroupFlags="personalInfo"
504 android:priority="330" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505
506 <!-- Allows an application to access fine (e.g., GPS) location -->
507 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
508 android:permissionGroup="android.permission-group.LOCATION"
509 android:protectionLevel="dangerous"
510 android:label="@string/permlab_accessFineLocation"
511 android:description="@string/permdesc_accessFineLocation" />
512
513 <!-- Allows an application to access coarse (e.g., Cell-ID, WiFi) location -->
514 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
515 android:permissionGroup="android.permission-group.LOCATION"
516 android:protectionLevel="dangerous"
517 android:label="@string/permlab_accessCoarseLocation"
518 android:description="@string/permdesc_accessCoarseLocation" />
519
520 <!-- Allows an application to create mock location providers for testing -->
521 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700522 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700523 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 android:label="@string/permlab_accessMockLocation"
525 android:description="@string/permdesc_accessMockLocation" />
526
527 <!-- Allows an application to access extra location provider commands -->
528 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700529 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700530 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 android:label="@string/permlab_accessLocationExtraCommands"
532 android:description="@string/permdesc_accessLocationExtraCommands" />
533
Mike Lockwood275555c2009-05-01 11:30:34 -0400534 <!-- Allows an application to install a location provider into the Location Manager -->
535 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborne639da72012-02-21 15:11:13 -0800536 android:protectionLevel="signature|system"
Mike Lockwood275555c2009-05-01 11:30:34 -0400537 android:label="@string/permlab_installLocationProvider"
538 android:description="@string/permdesc_installLocationProvider" />
539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 <!-- ======================================= -->
541 <!-- Permissions for accessing networks -->
542 <!-- ======================================= -->
543 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700544
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 <!-- Used for permissions that provide access to networking services. The
546 main permission here is internet access, but this is also an
547 appropriate group for accessing or modifying any network configuration
548 or other related network operations. -->
549 <permission-group android:name="android.permission-group.NETWORK"
550 android:label="@string/permgrouplab_network"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700551 android:icon="@drawable/perm_group_network"
552 android:description="@string/permgroupdesc_network"
553 android:priority="270" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554
555 <!-- Allows applications to open network sockets. -->
556 <permission android:name="android.permission.INTERNET"
557 android:permissionGroup="android.permission-group.NETWORK"
558 android:protectionLevel="dangerous"
559 android:description="@string/permdesc_createNetworkSockets"
560 android:label="@string/permlab_createNetworkSockets" />
561
562 <!-- Allows applications to access information about networks -->
563 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
564 android:permissionGroup="android.permission-group.NETWORK"
565 android:protectionLevel="normal"
566 android:description="@string/permdesc_accessNetworkState"
567 android:label="@string/permlab_accessNetworkState" />
568
569 <!-- Allows applications to access information about Wi-Fi networks -->
570 <permission android:name="android.permission.ACCESS_WIFI_STATE"
571 android:permissionGroup="android.permission-group.NETWORK"
572 android:protectionLevel="normal"
573 android:description="@string/permdesc_accessWifiState"
574 android:label="@string/permlab_accessWifiState" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700575
576 <!-- Allows applications to change Wi-Fi connectivity state -->
577 <permission android:name="android.permission.CHANGE_WIFI_STATE"
578 android:permissionGroup="android.permission-group.NETWORK"
579 android:protectionLevel="dangerous"
580 android:description="@string/permdesc_changeWifiState"
581 android:label="@string/permlab_changeWifiState" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700582
Robert Greenwalt8588e472011-11-08 10:12:25 -0800583 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +0900584 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
585 android:permissionGroup="android.permission-group.NETWORK"
586 android:protectionLevel="normal"
587 android:description="@string/permdesc_accessWimaxState"
588 android:label="@string/permlab_accessWimaxState" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700589
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700590 <!-- @hide -->
591 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700592 android:permissionGroup="android.permission-group.NETWORK"
593 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700594 android:description="@string/permdesc_changeWimaxState"
595 android:label="@string/permlab_changeWimaxState" />
596
597 <!-- ======================================= -->
598 <!-- Permissions for short range, peripheral networks -->
599 <!-- ======================================= -->
600 <eat-comment />
601
602 <!-- Used for permissions that provide access to other devices through Bluetooth.-->
603 <permission-group android:name="android.permission-group.BLUETOOTH_NETWORK"
604 android:label="@string/permgrouplab_bluetoothNetwork"
605 android:icon="@drawable/perm_group_bluetooth"
606 android:description="@string/permgroupdesc_bluetoothNetwork"
607 android:priority="260" />
608
609 <!-- Allows applications to connect to paired bluetooth devices -->
610 <permission android:name="android.permission.BLUETOOTH"
611 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
612 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 android:description="@string/permdesc_bluetooth"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700614 android:label="@string/permlab_bluetooth" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700615
616 <!-- Allows applications to discover and pair bluetooth devices -->
617 <permission android:name="android.permission.BLUETOOTH_ADMIN"
618 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
619 android:protectionLevel="dangerous"
620 android:description="@string/permdesc_bluetoothAdmin"
621 android:label="@string/permlab_bluetoothAdmin" />
622
Nick Pelly1df862a2011-02-15 13:34:38 -0800623 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700624 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700625 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700626 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700627 android:description="@string/permdesc_nfc"
628 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700629
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700630 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700631 @hide -->
632 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
633 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800634 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700635
Haoyu Baidb3c8672012-06-20 14:29:57 -0700636 <!-- @hide -->
637 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
638 android:permissionGroup="android.permission-group.NETWORK"
639 android:protectionLevel="signature|system" />
640
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 <!-- ================================== -->
642 <!-- Permissions for accessing accounts -->
643 <!-- ================================== -->
644 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700645
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700646 <!-- Permissions for direct access to the accounts managed
647 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 <permission-group android:name="android.permission-group.ACCOUNTS"
649 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700650 android:icon="@drawable/perm_group_accounts"
651 android:description="@string/permgroupdesc_accounts"
652 android:permissionGroupFlags="personalInfo"
653 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654
655 <!-- Allows access to the list of accounts in the Accounts Service -->
656 <permission android:name="android.permission.GET_ACCOUNTS"
657 android:permissionGroup="android.permission-group.ACCOUNTS"
658 android:protectionLevel="normal"
659 android:description="@string/permdesc_getAccounts"
660 android:label="@string/permlab_getAccounts" />
661
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700662 <!-- Allows an application to act as an AccountAuthenticator for
663 the AccountManager -->
664 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
665 android:permissionGroup="android.permission-group.ACCOUNTS"
666 android:protectionLevel="dangerous"
667 android:label="@string/permlab_authenticateAccounts"
668 android:description="@string/permdesc_authenticateAccounts" />
669
670 <!-- Allows an application to request authtokens from the AccountManager -->
671 <permission android:name="android.permission.USE_CREDENTIALS"
672 android:permissionGroup="android.permission-group.ACCOUNTS"
673 android:protectionLevel="dangerous"
674 android:label="@string/permlab_useCredentials"
675 android:description="@string/permdesc_useCredentials" />
676
677 <!-- Allows an application to manage the list of accounts in the AccountManager -->
678 <permission android:name="android.permission.MANAGE_ACCOUNTS"
679 android:permissionGroup="android.permission-group.ACCOUNTS"
680 android:protectionLevel="dangerous"
681 android:label="@string/permlab_manageAccounts"
682 android:description="@string/permdesc_manageAccounts" />
683
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700684 <!-- Allows applications to call into AccountAuthenticators. Only
685 the system can get this permission. -->
686 <permission android:name="android.permission.ACCOUNT_MANAGER"
687 android:permissionGroup="android.permission-group.ACCOUNTS"
688 android:protectionLevel="signature"
689 android:description="@string/permdesc_accountManagerService"
690 android:label="@string/permlab_accountManagerService" />
691
692 <!-- ================================== -->
693 <!-- Permissions for accessing hardware that may effect battery life-->
694 <!-- ================================== -->
695 <eat-comment />
696
697 <!-- Used for permissions that provide direct access to the hardware on
698 the device that has an effect on battery life. This includes vibrator,
699 flashlight, etc. -->
700
701 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
702 android:label="@string/permgrouplab_affectsBattery"
703 android:icon="@drawable/perm_group_affects_battery"
704 android:description="@string/permgroupdesc_affectsBattery"
705 android:priority="180" />
706
707 <!-- Allows applications to enter Wi-Fi Multicast mode -->
708 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
709 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
710 android:protectionLevel="dangerous"
711 android:description="@string/permdesc_changeWifiMulticastState"
712 android:label="@string/permlab_changeWifiMulticastState" />
713
714 <!-- Allows access to the vibrator -->
715 <permission android:name="android.permission.VIBRATE"
716 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
717 android:protectionLevel="normal"
718 android:label="@string/permlab_vibrate"
719 android:description="@string/permdesc_vibrate" />
720
721 <!-- Allows access to the flashlight -->
722 <permission android:name="android.permission.FLASHLIGHT"
723 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
724 android:protectionLevel="normal"
725 android:label="@string/permlab_flashlight"
726 android:description="@string/permdesc_flashlight" />
727
728 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
729 from dimming -->
730 <permission android:name="android.permission.WAKE_LOCK"
731 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
732 android:protectionLevel="normal"
733 android:label="@string/permlab_wakeLock"
734 android:description="@string/permdesc_wakeLock" />
735
736 <!-- ==================================================== -->
737 <!-- Permissions related to changing audio settings -->
738 <!-- ==================================================== -->
739
740 <!-- Used for permissions that provide direct access to speaker settings
741 the device. -->
742 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
743 android:label="@string/permgrouplab_audioSettings"
744 android:icon="@drawable/perm_group_audio_settings"
745 android:description="@string/permgroupdesc_audioSettings"
746 android:priority="130" />
747
748 <!-- Allows an application to modify global audio settings -->
749 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
750 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
751 android:protectionLevel="normal"
752 android:label="@string/permlab_modifyAudioSettings"
753 android:description="@string/permdesc_modifyAudioSettings" />
754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 <!-- ================================== -->
756 <!-- Permissions for accessing hardware -->
757 <!-- ================================== -->
758 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700759
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800760 <!-- Used for permissions that provide direct access to the hardware on
761 the device. This includes audio, the camera, vibrator, etc. -->
762 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
763 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700764 android:description="@string/permgroupdesc_hardwareControls"
765 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800766
Mike Lockwood02eb8742011-02-27 09:10:37 -0800767 <!-- Allows an application to manage preferences and permissions for USB devices
768 @hide -->
769 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400770 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800771 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800772 android:label="@string/permlab_manageUsb"
773 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400774
Mike Lockwood10bc1112011-01-10 08:24:08 -0500775 <!-- Allows an application to access the MTP USB kernel driver.
776 For use only by the device side MTP implementation.
777 @hide -->
778 <permission android:name="android.permission.ACCESS_MTP"
779 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800780 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500781 android:label="@string/permlab_accessMtp"
782 android:description="@string/permdesc_accessMtp" />
783
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
785 <permission android:name="android.permission.HARDWARE_TEST"
786 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
787 android:protectionLevel="signature"
788 android:label="@string/permlab_hardware_test"
789 android:description="@string/permdesc_hardware_test" />
790
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500791 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
792 @hide -->
793 <permission android:name="android.permission.NET_ADMIN"
794 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
795 android:protectionLevel="signature" />
796
Jeff Sharkey098d5802012-04-26 17:30:34 -0700797 <!-- Allows registration for remote audio playback. @hide -->
798 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
799 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
800 android:protectionLevel="signature" />
801
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700803 <!-- Permissions associated with audio capture -->
804 <!-- =========================================== -->
805 <eat-comment />
806
807 <!-- Used for permissions that are associated with accessing
808 microphone audio from the device. Note that phone calls also capture audio
809 but are in a separate (more visible) permission group. -->
810 <permission-group android:name="android.permission-group.MICROPHONE"
811 android:label="@string/permgrouplab_microphone"
812 android:icon="@drawable/perm_group_microphone"
813 android:description="@string/permgroupdesc_microphone"
814 android:permissionGroupFlags="personalInfo"
815 android:priority="340" />
816
817 <!-- Allows an application to record audio -->
818 <permission android:name="android.permission.RECORD_AUDIO"
819 android:permissionGroup="android.permission-group.MICROPHONE"
820 android:protectionLevel="dangerous"
821 android:label="@string/permlab_recordAudio" />
822
823
824 <!-- =========================================== -->
825 <!-- Permissions associated with camera and image capture -->
826 <!-- =========================================== -->
827 <eat-comment />
828
829 <!-- Used for permissions that are associated with accessing
830 camera or capturing images/video from the device. -->
831 <permission-group android:name="android.permission-group.CAMERA"
832 android:label="@string/permgrouplab_camera"
833 android:icon="@drawable/perm_group_camera"
834 android:description="@string/permgroupdesc_camera"
835 android:permissionGroupFlags="personalInfo"
836 android:priority="350" />
837
838 <!-- Required to be able to access the camera device.
839 <p>This will automatically enforce the <a
840 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
841 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
842 If you do not require all camera features or can properly operate if a camera
843 is not available, then you must modify your manifest as appropriate in order to
844 install on devices that don't support all camera features.</p> -->
845 <permission android:name="android.permission.CAMERA"
846 android:permissionGroup="android.permission-group.CAMERA"
847 android:protectionLevel="dangerous"
848 android:label="@string/permlab_camera"
849 android:description="@string/permdesc_camera" />
850
851 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 <!-- Permissions associated with telephony state -->
853 <!-- =========================================== -->
854 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700855
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700857 telephony state: placing calls, intercepting outgoing calls, reading
858 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859 <permission-group android:name="android.permission-group.PHONE_CALLS"
860 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700861 android:icon="@drawable/perm_group_phone_calls"
862 android:description="@string/permgroupdesc_phoneCalls"
863 android:permissionGroupFlags="personalInfo"
864 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865
866 <!-- Allows an application to monitor, modify, or abort outgoing
867 calls. -->
868 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
869 android:permissionGroup="android.permission-group.PHONE_CALLS"
870 android:protectionLevel="dangerous"
871 android:label="@string/permlab_processOutgoingCalls"
872 android:description="@string/permdesc_processOutgoingCalls" />
873
874 <!-- Allows modification of the telephony state - power on, mmi, etc.
875 Does not include placing calls. -->
876 <permission android:name="android.permission.MODIFY_PHONE_STATE"
877 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800878 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 android:label="@string/permlab_modifyPhoneState"
880 android:description="@string/permdesc_modifyPhoneState" />
881
882 <!-- Allows read only access to phone state. -->
883 <permission android:name="android.permission.READ_PHONE_STATE"
884 android:permissionGroup="android.permission-group.PHONE_CALLS"
885 android:protectionLevel="dangerous"
886 android:label="@string/permlab_readPhoneState"
887 android:description="@string/permdesc_readPhoneState" />
888
Jake Hamby463f2212011-07-21 17:55:53 -0700889 <!-- Allows read access to privileged phone state.
890 @hide Used internally. -->
891 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
892 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800893 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -0700894
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700895 <!-- Allows an application to initiate a phone call without going through
896 the Dialer user interface for the user to confirm the call
897 being placed. -->
898 <permission android:name="android.permission.CALL_PHONE"
899 android:permissionGroup="android.permission-group.PHONE_CALLS"
900 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700901 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700902 android:label="@string/permlab_callPhone"
903 android:description="@string/permdesc_callPhone" />
904
905 <!-- Allows an application to use SIP service -->
906 <permission android:name="android.permission.USE_SIP"
907 android:permissionGroup="android.permission-group.PHONE_CALLS"
908 android:protectionLevel="dangerous"
909 android:description="@string/permdesc_use_sip"
910 android:label="@string/permlab_use_sip" />
911
San Mehat29b57e62009-04-23 09:18:32 -0700912 <!-- ================================== -->
913 <!-- Permissions for sdcard interaction -->
914 <!-- ================================== -->
915 <eat-comment />
916
917 <!-- Group of permissions that are related to SD card access. -->
918 <permission-group android:name="android.permission-group.STORAGE"
919 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700920 android:icon="@drawable/perm_group_storage"
921 android:description="@string/permgroupdesc_storage"
922 android:permissionGroupFlags="personalInfo"
923 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -0700924
Dianne Hackborn79245122012-03-12 10:51:26 -0700925 <!-- Allows an application to read from external storage -->
926 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700927 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -0700928 android:label="@string/permlab_sdcardRead"
929 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700930 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -0700931
San Mehat5a3a77d2009-06-01 09:25:28 -0700932 <!-- Allows an application to write to external storage -->
933 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -0700934 android:permissionGroup="android.permission-group.STORAGE"
935 android:label="@string/permlab_sdcardWrite"
936 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -0700937 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -0700938
Mike Lockwood1e23db42011-04-22 07:05:21 -0700939 <!-- Allows an application to write to internal media storage
940 @hide -->
941 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
942 android:permissionGroup="android.permission-group.STORAGE"
943 android:label="@string/permlab_mediaStorageWrite"
944 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -0800945 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -0700946
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700947 <!-- ================================== -->
948 <!-- Permissions for screenlock -->
949 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700951
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700952 <!-- Group of permissions that are related to the screenlock. -->
953 <permission-group android:name="android.permission-group.SCREENLOCK"
954 android:label="@string/permgrouplab_storage"
955 android:icon="@drawable/perm_group_screenlock"
956 android:permissionGroupFlags="personalInfo"
957 android:description="@string/permgroupdesc_storage"
958 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800959
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700960 <!-- Allows applications to disable the keyguard -->
961 <permission android:name="android.permission.DISABLE_KEYGUARD"
962 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800963 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700964 android:description="@string/permdesc_disableKeyguard"
965 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700967 <!-- ================================== -->
968 <!-- Permissions to access other installed applications -->
969 <!-- ================================== -->
970 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700972 <!-- Group of permissions that are related to the other applications
973 installed on the system. Examples include such as listing
974 running apps, or killing background processes. -->
975 <permission-group android:name="android.permission-group.APP_INFO"
976 android:label="@string/permgrouplab_appInfo"
977 android:icon="@drawable/perm_group_app_info"
978 android:description="@string/permgroupdesc_appInfo"
979 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980
981 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -0700982 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700984 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 android:protectionLevel="dangerous"
986 android:label="@string/permlab_getTasks"
987 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -0700988 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -0700989 across the users on the device, using singleton services and
990 user-targeted broadcasts. This permission is not available to
991 third party applications. -->
992 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
993 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
994 android:protectionLevel="signature|system|development"
995 android:label="@string/permlab_interactAcrossUsers"
996 android:description="@string/permdesc_interactAcrossUsers" />
997
998 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
999 that removes restrictions on where broadcasts can be sent and allows other
1000 types of interactions. -->
1001 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1002 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1003 android:protectionLevel="signature"
1004 android:label="@string/permlab_interactAcrossUsersFull"
1005 android:description="@string/permdesc_interactAcrossUsersFull" />
1006
Dianne Hackborn8832c182012-09-17 17:20:24 -07001007 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001008 users on the device. This permission is not available to
1009 third party applications. -->
1010 <permission android:name="android.permission.MANAGE_USERS"
1011 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001012 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001013 android:label="@string/permlab_manageUsers"
1014 android:description="@string/permdesc_manageUsers" />
1015
Dianne Hackborn8238e712012-04-24 11:15:40 -07001016 <!-- Allows an application to get full detailed information about
1017 recently running tasks, with full fidelity to the real state.
1018 @hide -->
1019 <permission android:name="android.permission.GET_DETAILED_TASKS"
1020 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1021 android:protectionLevel="signature"
1022 android:label="@string/permlab_getDetailedTasks"
1023 android:description="@string/permdesc_getDetailedTasks" />
1024
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001025 <!-- Allows an application to change the Z-order of tasks -->
1026 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001027 android:permissionGroup="android.permission-group.APP_INFO"
1028 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001029 android:label="@string/permlab_reorderTasks"
1030 android:description="@string/permdesc_reorderTasks" />
1031
Dianne Hackborn24a12102011-07-29 15:52:05 -07001032 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001033 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001034 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001035 android:protectionLevel="signature"
1036 android:label="@string/permlab_removeTasks"
1037 android:description="@string/permdesc_removeTasks" />
1038
Jeff Sharkey35be7562012-04-18 19:16:15 -07001039 <!-- Allows an application to start any activity, regardless of permission
1040 protection or exported state. @hide -->
1041 <permission android:name="android.permission.START_ANY_ACTIVITY"
1042 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1043 android:protectionLevel="signature"
1044 android:label="@string/permlab_startAnyActivity"
1045 android:description="@string/permdesc_startAnyActivity" />
1046
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001047 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1048 API is no longer supported. -->
1049 <permission android:name="android.permission.RESTART_PACKAGES"
1050 android:permissionGroup="android.permission-group.APP_INFO"
1051 android:protectionLevel="normal"
1052 android:label="@string/permlab_killBackgroundProcesses"
1053 android:description="@string/permdesc_killBackgroundProcesses" />
1054
1055 <!-- Allows an application to call
1056 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1057 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1058 android:permissionGroup="android.permission-group.APP_INFO"
1059 android:protectionLevel="normal"
1060 android:label="@string/permlab_killBackgroundProcesses"
1061 android:description="@string/permdesc_killBackgroundProcesses" />
1062
1063 <!-- ================================== -->
1064 <!-- Permissions affecting the display of other applications -->
1065 <!-- ================================== -->
1066 <eat-comment />
1067
1068 <!-- Group of permissions that allow manipulation of how
1069 another application displays UI to the user. -->
1070 <permission-group android:name="android.permission-group.DISPLAY"
1071 android:label="@string/permgrouplab_display"
1072 android:icon="@drawable/perm_group_display"
1073 android:description="@string/permgroupdesc_display"
1074 android:priority="190"/>
1075
1076 <!-- Allows an application to open windows using the type
1077 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1078 shown on top of all other applications. Very few applications
1079 should use this permission; these windows are intended for
1080 system-level interaction with the user. -->
1081 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1082 android:permissionGroup="android.permission-group.DISPLAY"
1083 android:protectionLevel="dangerous"
1084 android:label="@string/permlab_systemAlertWindow"
1085 android:description="@string/permdesc_systemAlertWindow" />
1086
1087 <!-- ================================== -->
1088 <!-- Permissions affecting the system wallpaper -->
1089 <!-- ================================== -->
1090 <eat-comment />
1091
1092 <!-- Group of permissions that allow manipulation of how
1093 another application displays UI to the user. -->
1094 <permission-group android:name="android.permission-group.WALLPAPER"
1095 android:label="@string/permgrouplab_wallpaper"
1096 android:icon="@drawable/perm_group_wallpaper"
1097 android:description="@string/permgroupdesc_wallpaper"
1098 android:priority="150" />
1099
1100 <!-- Allows applications to set the wallpaper -->
1101 <permission android:name="android.permission.SET_WALLPAPER"
1102 android:permissionGroup="android.permission-group.WALLPAPER"
1103 android:protectionLevel="normal"
1104 android:label="@string/permlab_setWallpaper"
1105 android:description="@string/permdesc_setWallpaper" />
1106
1107 <!-- Allows applications to set the wallpaper hints -->
1108 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1109 android:permissionGroup="android.permission-group.WALLPAPER"
1110 android:protectionLevel="normal"
1111 android:label="@string/permlab_setWallpaperHints"
1112 android:description="@string/permdesc_setWallpaperHints" />
1113
1114 <!-- ============================================ -->
1115 <!-- Permissions for changing the system clock -->
1116 <!-- ============================================ -->
1117 <eat-comment />
1118
1119 <!-- Group of permissions that are related to system clock. -->
1120 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1121 android:label="@string/permgrouplab_systemClock"
1122 android:icon="@drawable/perm_group_system_clock"
1123 android:description="@string/permgroupdesc_systemClock"
1124 android:priority="140" />
1125
1126 <!-- Allows applications to set the system time -->
1127 <permission android:name="android.permission.SET_TIME"
1128 android:protectionLevel="signature|system"
1129 android:label="@string/permlab_setTime"
1130 android:description="@string/permdesc_setTime" />
1131
1132 <!-- Allows applications to set the system time zone -->
1133 <permission android:name="android.permission.SET_TIME_ZONE"
1134 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1135 android:protectionLevel="normal"
1136 android:label="@string/permlab_setTimeZone"
1137 android:description="@string/permdesc_setTimeZone" />
1138
1139 <!-- ==================================================== -->
1140 <!-- Permissions related to changing status bar -->
1141 <!-- ==================================================== -->
1142
1143 <!-- Used for permissions that change the status bar -->
1144 <permission-group android:name="android.permission-group.STATUS_BAR"
1145 android:label="@string/permgrouplab_statusBar"
1146 android:icon="@drawable/perm_group_status_bar"
1147 android:description="@string/permgroupdesc_statusBar"
1148 android:priority="110" />
1149
1150 <!-- Allows an application to expand or collapse the status bar. -->
1151 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1152 android:permissionGroup="android.permission-group.STATUS_BAR"
1153 android:protectionLevel="normal"
1154 android:label="@string/permlab_expandStatusBar"
1155 android:description="@string/permdesc_expandStatusBar" />
1156
1157 <!-- ==================================================== -->
1158 <!-- Permissions related to accessing sync settings -->
1159 <!-- ==================================================== -->
1160
1161 <!-- Used for permissions that access the sync settings or sync
1162 related information. -->
1163 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1164 android:label="@string/permgrouplab_syncSettings"
1165 android:icon="@drawable/perm_group_sync_settings"
1166 android:description="@string/permgroupdesc_syncSettings"
1167 android:priority="120" />
1168
1169 <!-- Allows applications to read the sync settings -->
1170 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1171 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1172 android:protectionLevel="normal"
1173 android:description="@string/permdesc_readSyncSettings"
1174 android:label="@string/permlab_readSyncSettings" />
1175
1176 <!-- Allows applications to write the sync settings -->
1177 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1178 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1179 android:protectionLevel="normal"
1180 android:description="@string/permdesc_writeSyncSettings"
1181 android:label="@string/permlab_writeSyncSettings" />
1182
1183 <!-- Allows applications to read the sync stats -->
1184 <permission android:name="android.permission.READ_SYNC_STATS"
1185 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1186 android:protectionLevel="normal"
1187 android:description="@string/permdesc_readSyncStats"
1188 android:label="@string/permlab_readSyncStats" />
1189
1190
1191 <!-- ============================================ -->
1192 <!-- Permissions for low-level system interaction -->
1193 <!-- ============================================ -->
1194 <eat-comment />
1195
1196 <!-- Group of permissions that are related to system APIs. Many
1197 of these are not permissions the user will be expected to understand,
1198 and such permissions should generally be marked as "normal" protection
1199 level so they don't get displayed. This can also, however, be used
1200 for miscellaneous features that provide access to the operating system,
1201 such as writing the global system settings. -->
1202 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1203 android:label="@string/permgrouplab_systemTools"
1204 android:icon="@drawable/perm_group_system_tools"
1205 android:description="@string/permgroupdesc_systemTools"
1206 android:priority="100" />
1207
1208 <!-- @hide Change the screen compatibility mode of applications -->
1209 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1210 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1211 android:protectionLevel="signature"
1212 android:label="@string/permlab_setScreenCompatibility"
1213 android:description="@string/permdesc_setScreenCompatibility" />
1214
1215 <!-- Allows an application to access all multi-user external storage @hide -->
1216 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1217 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1218 android:label="@string/permlab_sdcardAccessAll"
1219 android:description="@string/permdesc_sdcardAccessAll"
1220 android:protectionLevel="signature" />
1221
1222 <!-- Allows an application to modify the current configuration, such
1223 as locale. -->
1224 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001225 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001226 android:protectionLevel="signature|system|development"
1227 android:label="@string/permlab_changeConfiguration"
1228 android:description="@string/permdesc_changeConfiguration" />
1229
1230 <!-- Allows an application to read or write the system settings. -->
1231 <permission android:name="android.permission.WRITE_SETTINGS"
1232 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1233 android:protectionLevel="normal"
1234 android:label="@string/permlab_writeSettings"
1235 android:description="@string/permdesc_writeSettings" />
1236
1237 <!-- Allows an application to modify the Google service map. -->
1238 <permission android:name="android.permission.WRITE_GSERVICES"
1239 android:protectionLevel="signature|system"
1240 android:label="@string/permlab_writeGservices"
1241 android:description="@string/permdesc_writeGservices" />
1242
Adrian Ludwig4c522352012-06-01 14:22:03 -07001243 <!-- @hide Change the screen compatibility mode of applications -->
1244 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1245 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1246 android:protectionLevel="signature"
1247 android:label="@string/permlab_setScreenCompatibility"
1248 android:description="@string/permdesc_setScreenCompatibility" />
1249
1250 <!-- Allows an application to modify the current configuration, such
1251 as locale. -->
1252 <permission android:name="android.permission.CHANGE_CONFIGURATION"
1253 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001254 android:protectionLevel="system|signature"
Adrian Ludwig4c522352012-06-01 14:22:03 -07001255 android:label="@string/permlab_changeConfiguration"
1256 android:description="@string/permdesc_changeConfiguration" />
1257
Dianne Hackborn03abb812010-01-04 18:43:19 -08001258 <!-- Allows an application to call
1259 {@link android.app.ActivityManager#forceStopPackage}.
1260 @hide -->
1261 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1262 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1263 android:protectionLevel="signature"
1264 android:label="@string/permlab_forceStopPackages"
1265 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266
Dianne Hackborn24a12102011-07-29 15:52:05 -07001267 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001268 An active window is the window that has fired an accessibility event. -->
1269 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1270 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001271 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001272 android:label="@string/permlab_retrieve_window_content"
1273 android:description="@string/permdesc_retrieve_window_content" />
1274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 <!-- Modify the global animation scaling factor. -->
1276 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1277 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001278 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 android:label="@string/permlab_setAnimationScale"
1280 android:description="@string/permdesc_setAnimationScale" />
1281
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001282 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001283 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001285 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001286 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 android:label="@string/permlab_persistentActivity"
1288 android:description="@string/permdesc_persistentActivity" />
1289
1290 <!-- Allows an application to find out the space used by any package. -->
1291 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1292 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1293 android:protectionLevel="normal"
1294 android:label="@string/permlab_getPackageSize"
1295 android:description="@string/permdesc_getPackageSize" />
1296
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001297 <!-- @deprecated No longer useful, see
1298 {@link android.content.pm.PackageManager#addPackageToPreferred}
1299 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001300 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1301 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001302 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001303 android:label="@string/permlab_setPreferredApplications"
1304 android:description="@string/permdesc_setPreferredApplications" />
1305
1306 <!-- Allows an application to receive the
1307 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1308 broadcast after the system finishes booting. If you don't
1309 request this permission, you will not receive the broadcast at
1310 that time. Though holding this permission does not have any
1311 security implications, it can have a negative impact on the
1312 user experience by increasing the amount of time it takes the
1313 system to start and allowing applications to have themselves
1314 running without the user being aware of them. As such, you must
1315 explicitly declare your use of this facility to make that visible
1316 to the user. -->
1317 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001318 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001319 android:protectionLevel="normal"
1320 android:label="@string/permlab_receiveBootCompleted"
1321 android:description="@string/permdesc_receiveBootCompleted" />
1322
1323 <!-- Allows an application to broadcast sticky intents. These are
1324 broadcasts whose data is held by the system after being finished,
1325 so that clients can quickly retrieve that data without having
1326 to wait for the next broadcast. -->
1327 <permission android:name="android.permission.BROADCAST_STICKY"
1328 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1329 android:protectionLevel="normal"
1330 android:label="@string/permlab_broadcastSticky"
1331 android:description="@string/permdesc_broadcastSticky" />
1332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001333 <!-- Allows mounting and unmounting file systems for removable storage. -->
1334 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
1335 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001336 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001337 android:label="@string/permlab_mount_unmount_filesystems"
1338 android:description="@string/permdesc_mount_unmount_filesystems" />
1339
1340 <!-- Allows formatting file systems for removable storage. -->
1341 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1342 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001343 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001344 android:label="@string/permlab_mount_format_filesystems"
1345 android:description="@string/permdesc_mount_format_filesystems" />
1346
San Mehat02735bc2010-01-26 15:18:08 -08001347 <!-- Allows access to ASEC non-destructive API calls
1348 @hide -->
1349 <permission android:name="android.permission.ASEC_ACCESS"
1350 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001351 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001352 android:label="@string/permlab_asec_access"
1353 android:description="@string/permdesc_asec_access" />
1354
1355 <!-- Allows creation of ASEC volumes
1356 @hide -->
1357 <permission android:name="android.permission.ASEC_CREATE"
1358 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001359 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001360 android:label="@string/permlab_asec_create"
1361 android:description="@string/permdesc_asec_create" />
1362
1363 <!-- Allows destruction of ASEC volumes
1364 @hide -->
1365 <permission android:name="android.permission.ASEC_DESTROY"
1366 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001367 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001368 android:label="@string/permlab_asec_destroy"
1369 android:description="@string/permdesc_asec_destroy" />
1370
1371 <!-- Allows mount / unmount of ASEC volumes
1372 @hide -->
1373 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1374 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001375 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001376 android:label="@string/permlab_asec_mount_unmount"
1377 android:description="@string/permdesc_asec_mount_unmount" />
1378
1379 <!-- Allows rename of ASEC volumes
1380 @hide -->
1381 <permission android:name="android.permission.ASEC_RENAME"
1382 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001383 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001384 android:label="@string/permlab_asec_rename"
1385 android:description="@string/permdesc_asec_rename" />
1386
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387 <!-- Allows applications to write the apn settings -->
1388 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1389 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001390 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 android:description="@string/permdesc_writeApnSettings"
1392 android:label="@string/permlab_writeApnSettings" />
1393
Fred Quintana60307342009-03-24 22:48:12 -07001394 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001395 ContentProvider. -->
1396 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1397 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1398 android:label="@string/permlab_subscribedFeedsRead"
1399 android:description="@string/permdesc_subscribedFeedsRead"
1400 android:protectionLevel="normal" />
1401 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1402 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1403 android:label="@string/permlab_subscribedFeedsWrite"
1404 android:description="@string/permdesc_subscribedFeedsWrite"
1405 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001406
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001407 <!-- Allows applications to change network connectivity state -->
1408 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001409 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001410 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 android:description="@string/permdesc_changeNetworkState"
1412 android:label="@string/permlab_changeNetworkState" />
1413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001414 <!-- Allows an application to clear the caches of all installed
1415 applications on the device. -->
1416 <permission android:name="android.permission.CLEAR_APP_CACHE"
1417 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1418 android:protectionLevel="dangerous"
1419 android:label="@string/permlab_clearAppCache"
1420 android:description="@string/permdesc_clearAppCache" />
1421
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001422 <!-- Allows an application to use any media decoder when decoding for playback
1423 @hide -->
1424 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001425 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001426 android:label="@string/permlab_anyCodecForPlayback"
1427 android:description="@string/permdesc_anyCodecForPlayback" />
1428
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429 <!-- ========================================= -->
1430 <!-- Permissions for special development tools -->
1431 <!-- ========================================= -->
1432 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001433
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001434 <!-- Group of permissions that are related to development features. These
1435 are not permissions that should appear in normal applications; they
1436 protect APIs that are intended only to be used for development
1437 purposes. -->
1438 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1439 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001440 android:description="@string/permgroupdesc_developmentTools"
1441 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442
Dianne Hackborne639da72012-02-21 15:11:13 -08001443 <!-- Allows an application to read or write the secure system settings. -->
1444 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1445 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1446 android:protectionLevel="signature|system|development"
1447 android:label="@string/permlab_writeSecureSettings"
1448 android:description="@string/permdesc_writeSecureSettings" />
1449
1450 <!-- Allows an application to retrieve state dump information from system
1451 services. -->
1452 <permission android:name="android.permission.DUMP"
1453 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1454 android:protectionLevel="signature|system|development"
1455 android:label="@string/permlab_dump"
1456 android:description="@string/permdesc_dump" />
1457
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001458 <!-- Allows an application to read the low-level system log files.
1459 Log entries can contain the user's private information,
1460 which is why this permission is not available to normal apps. -->
1461 <permission android:name="android.permission.READ_LOGS"
1462 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1463 android:protectionLevel="signature|system|development"
1464 android:label="@string/permlab_readLogs"
1465 android:description="@string/permdesc_readLogs" />
1466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467 <!-- Configure an application for debugging. -->
1468 <permission android:name="android.permission.SET_DEBUG_APP"
1469 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001470 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001471 android:label="@string/permlab_setDebugApp"
1472 android:description="@string/permdesc_setDebugApp" />
1473
1474 <!-- Allows an application to set the maximum number of (not needed)
1475 application processes that can be running. -->
1476 <permission android:name="android.permission.SET_PROCESS_LIMIT"
1477 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001478 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001479 android:label="@string/permlab_setProcessLimit"
1480 android:description="@string/permdesc_setProcessLimit" />
1481
1482 <!-- Allows an application to control whether activities are immediately
1483 finished when put in the background. -->
1484 <permission android:name="android.permission.SET_ALWAYS_FINISH"
1485 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001486 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001487 android:label="@string/permlab_setAlwaysFinish"
1488 android:description="@string/permdesc_setAlwaysFinish" />
1489
1490 <!-- Allow an application to request that a signal be sent to all persistent processes -->
1491 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1492 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001493 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001494 android:label="@string/permlab_signalPersistentProcesses"
1495 android:description="@string/permdesc_signalPersistentProcesses" />
1496
1497 <!-- ==================================== -->
1498 <!-- Private (signature-only) permissions -->
1499 <!-- ==================================== -->
1500 <eat-comment />
1501
1502 <!-- Allows applications to RW to diagnostic resources. -->
1503 <permission android:name="android.permission.DIAGNOSTIC"
1504 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1505 android:protectionLevel="signature"
1506 android:description="@string/permdesc_diagnostic"
1507 android:label="@string/permlab_diagnostic" />
1508
1509 <!-- Allows an application to open, close, or disable the status bar
1510 and its icons. -->
1511 <permission android:name="android.permission.STATUS_BAR"
1512 android:label="@string/permlab_statusBar"
1513 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001514 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515
Joe Onorato8bc6c512010-06-04 16:21:12 -04001516 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1517 @hide -->
1518 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1519 android:label="@string/permlab_statusBarService"
1520 android:description="@string/permdesc_statusBarService"
1521 android:protectionLevel="signature" />
1522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001523 <!-- Allows an application to force a BACK operation on whatever is the
1524 top activity. -->
1525 <permission android:name="android.permission.FORCE_BACK"
1526 android:label="@string/permlab_forceBack"
1527 android:description="@string/permdesc_forceBack"
1528 android:protectionLevel="signature" />
1529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 <!-- Allows an application to update device statistics. Not for
1531 use by third party apps. -->
1532 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001533 android:label="@string/permlab_updateBatteryStats"
1534 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001535 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001536
1537 <!-- Allows an application to open windows that are for use by parts
1538 of the system user interface. Not for use by third party apps. -->
1539 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1540 android:label="@string/permlab_internalSystemWindow"
1541 android:description="@string/permdesc_internalSystemWindow"
1542 android:protectionLevel="signature" />
1543
1544 <!-- Allows an application to manage (create, destroy,
1545 Z-order) application tokens in the window manager. This is only
1546 for use by the system. -->
1547 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1548 android:label="@string/permlab_manageAppTokens"
1549 android:description="@string/permdesc_manageAppTokens"
1550 android:protectionLevel="signature" />
1551
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001552 <!-- @hide Allows the application to temporarily freeze the screen for a
1553 full-screen transition. -->
1554 <permission android:name="android.permission.FREEZE_SCREEN"
1555 android:label="@string/permlab_freezeScreen"
1556 android:description="@string/permdesc_freezeScreen"
1557 android:protectionLevel="signature" />
1558
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001559 <!-- Allows an application to inject user events (keys, touch, trackball)
1560 into the event stream and deliver them to ANY window. Without this
1561 permission, you can only deliver events to windows in your own process.
1562 Very few applications should need to use this permission. -->
1563 <permission android:name="android.permission.INJECT_EVENTS"
1564 android:label="@string/permlab_injectEvents"
1565 android:description="@string/permdesc_injectEvents"
1566 android:protectionLevel="signature" />
1567
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001568 <!-- @hide Allows an application to register an input filter which filters the stream
1569 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1570 <permission android:name="android.permission.FILTER_EVENTS"
1571 android:label="@string/permlab_filter_events"
1572 android:description="@string/permdesc_filter_events"
1573 android:protectionLevel="signature" />
1574
1575 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1576 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1577 android:label="@string/permlab_retrieve_window_info"
1578 android:description="@string/permdesc_retrieve_window_info"
1579 android:protectionLevel="signature" />
1580
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001581 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1582 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1583 android:label="@string/permlab_temporary_enable_accessibility"
1584 android:description="@string/permdesc_temporary_enable_accessibility"
1585 android:protectionLevel="signature" />
1586
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001587 <!-- @hide Allows an application to magnify the content of a display. -->
1588 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1589 android:label="@string/permlab_magnify_display"
1590 android:description="@string/permdesc_magnify_display"
1591 android:protectionLevel="signature" />
1592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001593 <!-- Allows an application to watch and control how activities are
1594 started globally in the system. Only for is in debugging
1595 (usually the monkey command). -->
1596 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1597 android:label="@string/permlab_runSetActivityWatcher"
1598 android:description="@string/permdesc_runSetActivityWatcher"
1599 android:protectionLevel="signature" />
1600
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001601 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001602 to put the higher-level system there into a shutdown state.
1603 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001604 <permission android:name="android.permission.SHUTDOWN"
1605 android:label="@string/permlab_shutdown"
1606 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001607 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001608
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001609 <!-- Allows an application to tell the activity manager to temporarily
1610 stop application switches, putting it into a special mode that
1611 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001612 critical UI such as the home screen.
1613 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001614 <permission android:name="android.permission.STOP_APP_SWITCHES"
1615 android:label="@string/permlab_stopAppSwitches"
1616 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001617 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 <!-- Allows an application to retrieve the current state of keys and
Jeff Brownac143512012-04-05 18:57:33 -07001620 switches. This is only for use by the system.
1621 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001622 <permission android:name="android.permission.READ_INPUT_STATE"
1623 android:label="@string/permlab_readInputState"
1624 android:description="@string/permdesc_readInputState"
1625 android:protectionLevel="signature" />
1626
Dianne Hackbornd6847842010-01-12 18:14:19 -08001627 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1628 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 <permission android:name="android.permission.BIND_INPUT_METHOD"
1630 android:label="@string/permlab_bindInputMethod"
1631 android:description="@string/permdesc_bindInputMethod"
1632 android:protectionLevel="signature" />
1633
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001634 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001635 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001636 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1637 android:label="@string/permlab_bindAccessibilityService"
1638 android:description="@string/permdesc_bindAccessibilityService"
1639 android:protectionLevel="signature" />
1640
satok988323c2011-06-22 16:38:13 +09001641 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1642 to ensure that only the system can bind to it. -->
1643 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1644 android:label="@string/permlab_bindTextService"
1645 android:description="@string/permdesc_bindTextService"
1646 android:protectionLevel="signature" />
1647
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001648 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001649 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001650 <permission android:name="android.permission.BIND_VPN_SERVICE"
1651 android:label="@string/permlab_bindVpnService"
1652 android:description="@string/permdesc_bindVpnService"
1653 android:protectionLevel="signature" />
1654
Dianne Hackbornd6847842010-01-12 18:14:19 -08001655 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1656 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001657 <permission android:name="android.permission.BIND_WALLPAPER"
1658 android:label="@string/permlab_bindWallpaper"
1659 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001660 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001661
Dianne Hackbornd6847842010-01-12 18:14:19 -08001662 <!-- Must be required by device administration receiver, to ensure that only the
1663 system can interact with it. -->
1664 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1665 android:label="@string/permlab_bindDeviceAdmin"
1666 android:description="@string/permdesc_bindDeviceAdmin"
1667 android:protectionLevel="signature" />
1668
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001669 <!-- Allows low-level access to setting the orientation (actually
1670 rotation) of the screen. Not for use by normal applications. -->
1671 <permission android:name="android.permission.SET_ORIENTATION"
1672 android:label="@string/permlab_setOrientation"
1673 android:description="@string/permdesc_setOrientation"
1674 android:protectionLevel="signature" />
1675
Jeff Brown1a84fd12011-06-02 01:26:32 -07001676 <!-- Allows low-level access to setting the pointer speed.
1677 Not for use by normal applications. -->
1678 <permission android:name="android.permission.SET_POINTER_SPEED"
1679 android:label="@string/permlab_setPointerSpeed"
1680 android:description="@string/permdesc_setPointerSpeed"
1681 android:protectionLevel="signature" />
1682
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001683 <!-- Allows low-level access to setting the keyboard layout.
Jeff Brown507f5582012-05-07 19:06:06 -07001684 Not for use by normal applications.
1685 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001686 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1687 android:label="@string/permlab_setKeyboardLayout"
1688 android:description="@string/permdesc_setKeyboardLayout"
1689 android:protectionLevel="signature" />
1690
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001691 <!-- Allows an application to install packages. -->
1692 <permission android:name="android.permission.INSTALL_PACKAGES"
1693 android:label="@string/permlab_installPackages"
1694 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001695 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001696
1697 <!-- Allows an application to clear user data -->
1698 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1699 android:label="@string/permlab_clearAppUserData"
1700 android:description="@string/permdesc_clearAppUserData"
1701 android:protectionLevel="signature" />
1702
1703 <!-- Allows an application to delete cache files. -->
1704 <permission android:name="android.permission.DELETE_CACHE_FILES"
1705 android:label="@string/permlab_deleteCacheFiles"
1706 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001707 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001708
1709 <!-- Allows an application to delete packages. -->
1710 <permission android:name="android.permission.DELETE_PACKAGES"
1711 android:label="@string/permlab_deletePackages"
1712 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001713 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001714
Jeff Brownec7c78f2010-03-30 23:37:25 -07001715 <!-- Allows an application to move location of installed package.
1716 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001717 <permission android:name="android.permission.MOVE_PACKAGE"
1718 android:label="@string/permlab_movePackage"
1719 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001720 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001721
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001722 <!-- Allows an application to change whether an application component (other than its own) is
1723 enabled or not. -->
1724 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1725 android:label="@string/permlab_changeComponentState"
1726 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001727 android:protectionLevel="signature|system" />
1728
1729 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1730 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1731 android:label="@string/permlab_grantRevokePermissions"
1732 android:description="@string/permdesc_grantRevokePermissions"
1733 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001734
1735 <!-- Allows an application to use SurfaceFlinger's low level features -->
1736 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1737 android:label="@string/permlab_accessSurfaceFlinger"
1738 android:description="@string/permdesc_accessSurfaceFlinger"
1739 android:protectionLevel="signature" />
1740
1741 <!-- Allows an application to take screen shots and more generally
1742 get access to the frame buffer data -->
1743 <permission android:name="android.permission.READ_FRAME_BUFFER"
1744 android:label="@string/permlab_readFrameBuffer"
1745 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001746 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001747
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001748 <!-- Allows an application to configure and connect to Wifi displays
1749 @hide -->
1750 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1751 android:label="@string/permlab_configureWifiDisplay"
1752 android:description="@string/permdesc_configureWifiDisplay"
1753 android:protectionLevel="signature" />
1754
1755 <!-- Allows an application to control low-level features of Wifi displays
1756 such as opening an RTSP socket. This permission should only be used
1757 by the display manager.
1758 @hide -->
1759 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1760 android:label="@string/permlab_controlWifiDisplay"
1761 android:description="@string/permdesc_controlWifiDisplay"
1762 android:protectionLevel="signature" />
1763
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001764 <!-- Required to be able to disable the device (very dangerous!). -->
1765 <permission android:name="android.permission.BRICK"
1766 android:label="@string/permlab_brick"
1767 android:description="@string/permdesc_brick"
1768 android:protectionLevel="signature" />
1769
1770 <!-- Required to be able to reboot the device. -->
1771 <permission android:name="android.permission.REBOOT"
1772 android:label="@string/permlab_reboot"
1773 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001774 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775
1776 <!-- Allows low-level access to power management -->
1777 <permission android:name="android.permission.DEVICE_POWER"
1778 android:label="@string/permlab_devicePower"
1779 android:description="@string/permdesc_devicePower"
1780 android:protectionLevel="signature" />
1781
Dianne Hackborn8832c182012-09-17 17:20:24 -07001782 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001783 <permission android:name="android.permission.NET_TUNNELING"
1784 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1785 android:protectionLevel="signature" />
1786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001787 <!-- Run as a manufacturer test application, running as the root user.
1788 Only available when the device is running in manufacturer test mode. -->
1789 <permission android:name="android.permission.FACTORY_TEST"
1790 android:label="@string/permlab_factoryTest"
1791 android:description="@string/permdesc_factoryTest"
1792 android:protectionLevel="signature" />
1793
1794 <!-- Allows an application to broadcast a notification that an application
1795 package has been removed. -->
1796 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1797 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1798 android:label="@string/permlab_broadcastPackageRemoved"
1799 android:description="@string/permdesc_broadcastPackageRemoved"
1800 android:protectionLevel="signature" />
1801
1802 <!-- Allows an application to broadcast an SMS receipt notification -->
1803 <permission android:name="android.permission.BROADCAST_SMS"
1804 android:permissionGroup="android.permission-group.MESSAGES"
1805 android:label="@string/permlab_broadcastSmsReceived"
1806 android:description="@string/permdesc_broadcastSmsReceived"
1807 android:protectionLevel="signature" />
1808
1809 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1810 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1811 android:permissionGroup="android.permission-group.MESSAGES"
1812 android:label="@string/permlab_broadcastWapPush"
1813 android:description="@string/permdesc_broadcastWapPush"
1814 android:protectionLevel="signature" />
1815
1816 <permission android:name="android.permission.MASTER_CLEAR"
1817 android:label="@string/permlab_masterClear"
1818 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08001819 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820
1821 <!-- Allows an application to call any phone number, including emergency
1822 numbers, without going through the Dialer user interface for the user
1823 to confirm the call being placed. -->
1824 <permission android:name="android.permission.CALL_PRIVILEGED"
1825 android:label="@string/permlab_callPrivileged"
1826 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08001827 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001828
Jim Miller767be5f2009-08-25 19:33:57 -07001829 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1830 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1831 android:label="@string/permlab_performCdmaProvisioning"
1832 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08001833 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07001834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001835 <!-- Allows enabling/disabling location update notifications from
1836 the radio. Not for use by normal applications. -->
1837 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1838 android:label="@string/permlab_locationUpdates"
1839 android:description="@string/permdesc_locationUpdates"
Dianne Hackborne639da72012-02-21 15:11:13 -08001840 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001841
1842 <!-- Allows read/write access to the "properties" table in the checkin
1843 database, to change values that get uploaded. -->
1844 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1845 android:label="@string/permlab_checkinProperties"
1846 android:description="@string/permdesc_checkinProperties"
Dianne Hackborne639da72012-02-21 15:11:13 -08001847 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001848
1849 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001850 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001851 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1852 android:label="@string/permlab_pkgUsageStats"
1853 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001854 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001855
1856 <!-- Allows an application to collect battery statistics -->
1857 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001858 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001859 android:label="@string/permlab_batteryStats"
1860 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001861 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001862
Christopher Tate181fafa2009-05-14 11:12:14 -07001863 <!-- Allows an application to control the backup and restore process
1864 @hide pending API council -->
1865 <permission android:name="android.permission.BACKUP"
1866 android:label="@string/permlab_backup"
1867 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08001868 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001869
Christopher Tate4a627c72011-04-01 14:43:32 -07001870 <!-- Allows a package to launch the secure full-backup confirmation UI.
1871 ONLY the system process may hold this permission.
1872 @hide -->
1873 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
1874 android:label="@string/permlab_confirm_full_backup"
1875 android:description="@string/permdesc_confirm_full_backup"
1876 android:protectionLevel="signature" />
1877
Winson Chung81f39eb2011-01-11 18:05:01 -08001878 <!-- Must be required by a {@link android.widget.RemoteViewsService},
1879 to ensure that only the system can bind to it. -->
1880 <permission android:name="android.permission.BIND_REMOTEVIEWS"
1881 android:label="@string/permlab_bindRemoteViews"
1882 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08001883 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08001884
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001885 <!-- Allows an application to tell the AppWidget service which application
1886 can access AppWidget's data. The normal user flow is that a user
1887 picks an AppWidget to go into a particular host, thereby giving that
1888 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001889 An application that has this permission should honor that contract.
1890 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001891 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001892 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1893 android:label="@string/permlab_bindGadget"
1894 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08001895 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896
Michael Jurka61a5b012012-04-13 10:39:45 -07001897 <!-- Internal permission allowing an application to query/set which
1898 applications can bind AppWidgets.
1899 @hide -->
1900 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
1901 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1902 android:protectionLevel="signature|system" />
1903
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 <!-- Allows applications to change the background data setting
1905 @hide pending API council -->
1906 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
1907 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1908 android:protectionLevel="signature"
1909 android:description="@string/permdesc_changeBackgroundDataSetting"
1910 android:label="@string/permlab_changeBackgroundDataSetting" />
1911
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001912 <!-- This permission can be used on content providers to allow the global
1913 search system to access their data. Typically it used when the
1914 provider has some permissions protecting it (which global search
1915 would not be expected to hold), and added as a read-only permission
1916 to the path in the provider where global search queries are
1917 performed. This permission can not be held by regular applications;
1918 it is used by applications to protect themselves from everyone else
1919 besides global search. -->
1920 <permission android:name="android.permission.GLOBAL_SEARCH"
1921 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001922 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001923
1924 <!-- Internal permission protecting access to the global search
1925 system: ensures that only the system can access the provider
1926 to perform queries (since this otherwise provides unrestricted
1927 access to a variety of content providers), and to write the
1928 search statistics (to keep applications from gaming the source
1929 ranking).
1930 @hide -->
1931 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
1932 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1933 android:protectionLevel="signature" />
1934
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001935 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001936 @hide XXX Change to signature once the picker is moved to its
1937 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001938 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
1939 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001940 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001941
John Spurlockf4f6b4c2012-08-25 12:08:03 -04001942 <!-- Allows applications to read dream settings and dream state.
1943 @hide -->
1944 <permission android:name="android.permission.READ_DREAM_STATE"
1945 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1946 android:protectionLevel="signature" />
1947
1948 <!-- Allows applications to write dream settings, and start or stop dreaming.
1949 @hide -->
1950 <permission android:name="android.permission.WRITE_DREAM_STATE"
1951 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1952 android:protectionLevel="signature" />
1953
Jeff Brownec7c78f2010-03-30 23:37:25 -07001954 <!-- Allow an application to read and write the cache partition.
1955 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08001956 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
1957 android:label="@string/permlab_cache_filesystem"
1958 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08001959 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08001960
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08001961 <!-- Must be required by default container service so that only
1962 the system can bind to it and use it to copy
1963 protected data to secure containers or files
1964 accessible to the system.
1965 @hide -->
1966 <permission android:name="android.permission.COPY_PROTECTED_DATA"
1967 android:label="@string/permlab_copyProtectedData"
1968 android:description="@string/permlab_copyProtectedData"
1969 android:protectionLevel="signature" />
1970
Jason parks8888c592011-01-20 22:46:41 -06001971 <!-- Internal permission protecting access to the encryption methods
1972 @hide
1973 -->
1974 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08001975 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06001976
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001977 <!-- Allows an application to read historical network usage for
1978 specific networks and applications. @hide -->
1979 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
1980 android:label="@string/permlab_readNetworkUsageHistory"
1981 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08001982 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001983
1984 <!-- Allows an application to manage network policies (such as warning and disable
1985 limits) and to define application-specific rules. @hide -->
1986 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
1987 android:label="@string/permlab_manageNetworkPolicy"
1988 android:description="@string/permdesc_manageNetworkPolicy"
1989 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06001990
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07001991 <!-- Allows an application to account its network traffic against other UIDs. Used
1992 by system services like download manager and media server. Not for use by
1993 third party apps. @hide -->
1994 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
1995 android:label="@string/permlab_modifyNetworkAccounting"
1996 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08001997 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07001998
Tom Taylorb0381682011-08-11 14:27:25 -07001999 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002000 @hide Used internally.
2001 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002002 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002003 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002004 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002005
Dianne Hackborn8832c182012-09-17 17:20:24 -07002006 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002007 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002008 -->
2009 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2010 android:label="@string/permlab_packageVerificationAgent"
2011 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002012 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002013
2014 <!-- Must be required by package verifier receiver, to ensure that only the
2015 system can interact with it.
2016 @hide
2017 -->
2018 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2019 android:label="@string/permlab_bindPackageVerifier"
2020 android:description="@string/permdesc_bindPackageVerifier"
2021 android:protectionLevel="signature" />
2022
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002023 <!-- Allows applications to access serial ports via the SerialManager.
2024 @hide -->
2025 <permission android:name="android.permission.SERIAL_PORT"
2026 android:label="@string/permlab_serialPort"
2027 android:description="@string/permdesc_serialPort"
2028 android:protectionLevel="normal" />
2029
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002030 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2031 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2032 in particular ActivityManagerService#getContentProviderExternal(String) and
2033 ActivityManagerService#removeContentProviderExternal(String).
2034 @hide
2035 -->
2036 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2037 android:label="@string/permlab_accessContentProvidersExternally"
2038 android:description="@string/permdesc_accessContentProvidersExternally"
2039 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002040 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2041 OTA reboot *not* occur while the lock is held.
2042 @hide -->
2043 <permission android:name="android.permission.UPDATE_LOCK"
2044 android:label="@string/permlab_updateLock"
2045 android:description="@string/permdesc_updateLock"
2046 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002047
Christopher Tate4a627c72011-04-01 14:43:32 -07002048 <!-- The system process is explicitly the only one allowed to launch the
2049 confirmation UI for full backup/restore -->
2050 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2051
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002052 <application android:process="system"
2053 android:persistent="true"
2054 android:hasCode="false"
2055 android:label="@string/android_system_label"
2056 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002057 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002058 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002059 android:icon="@drawable/ic_launcher_android"
2060 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002062 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002063 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002064 android:excludeFromRecents="true"
2065 android:multiprocess="true">
2066 <intent-filter>
2067 <action android:name="android.intent.action.CHOOSER" />
2068 <category android:name="android.intent.category.DEFAULT" />
2069 </intent-filter>
2070 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002071 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002072 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002073 android:label="@string/heavy_weight_switcher_title"
2074 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002075 android:excludeFromRecents="true"
2076 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002077 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002078 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002079 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2080 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002081 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002082 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2083 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002084 android:excludeFromRecents="true"
2085 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002086 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002087
Fred Quintana33269202009-04-20 16:05:10 -07002088 <activity android:name="android.accounts.ChooseAccountActivity"
2089 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002090 android:exported="true"
2091 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002092 android:label="@string/choose_account_label"
2093 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002094 </activity>
2095
Fred Quintana1121bb52011-09-14 23:19:35 -07002096 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2097 android:excludeFromRecents="true"
2098 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002099 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002100 android:label="@string/choose_account_label"
2101 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002102 </activity>
2103
2104 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2105 android:excludeFromRecents="true"
Fred Quintanab04fe4e2011-09-16 21:17:21 -07002106 android:theme="@android:style/Theme.Holo.DialogWhenLarge.NoActionBar"
Fred Quintana1121bb52011-09-14 23:19:35 -07002107 android:label="@string/choose_account_label"
2108 android:process=":ui">
2109 </activity>
2110
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002111 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2112 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002113 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002114 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2115 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002116 </activity>
2117
Fred Quintanab19e62a2010-12-16 13:54:43 -08002118 <activity android:name="android.content.SyncActivityTooManyDeletes"
2119 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002120 android:label="@string/sync_too_many_deletes"
2121 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002122 </activity>
2123
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002124 <activity android:name="com.android.server.ShutdownActivity"
2125 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002126 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002127 <intent-filter>
2128 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2129 <category android:name="android.intent.category.DEFAULT" />
2130 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002131 <intent-filter>
2132 <action android:name="android.intent.action.REBOOT" />
2133 <category android:name="android.intent.category.DEFAULT" />
2134 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002135 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002136
Danke Xie22d1f9f2009-08-18 18:28:45 -04002137 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002138 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002139 android:excludeFromRecents="true"
2140 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002141 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002142
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002143 <receiver android:name="com.android.server.BootReceiver" >
2144 <intent-filter>
2145 <action android:name="android.intent.action.BOOT_COMPLETED" />
2146 </intent-filter>
2147 </receiver>
2148
Geremy Condrab6310842012-08-23 22:00:15 -07002149 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2150 <intent-filter>
2151 <action android:name="android.intent.action.UPDATE_PINS" />
2152 </intent-filter>
2153 </receiver>
2154
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002155 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2156 <intent-filter>
2157 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2158 </intent-filter>
2159 </receiver>
2160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002161 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002162 android:permission="android.permission.MASTER_CLEAR"
2163 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002165 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2166 <action android:name="android.intent.action.MASTER_CLEAR" />
2167
2168 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002169 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002170 <category android:name="android.intent.category.MASTER_CLEAR" />
2171 </intent-filter>
2172 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002173
2174 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2175 android:permission="android.permission.MASTER_CLEAR"
2176 android:exported="true" />
2177
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002178 </application>
2179
2180</manifest>