blob: aa67ec2b58740c24a260b4343444c32f89e1512b [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
Matthew Xiefca9d632012-10-04 12:25:28 -0700623 <!-- Allows bluetooth stack to access files
624 @hide This should only be used by Bluetooth apk.
625 -->
626 <permission android:name="android.permission.BLUETOOTH_STACK"
627 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
628 android:protectionLevel="signature" />
629
Nick Pelly1df862a2011-02-15 13:34:38 -0800630 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700631 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700632 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700633 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700634 android:description="@string/permdesc_nfc"
635 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700636
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700637 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700638 @hide -->
639 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
640 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800641 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700642
Haoyu Baidb3c8672012-06-20 14:29:57 -0700643 <!-- @hide -->
644 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
645 android:permissionGroup="android.permission-group.NETWORK"
646 android:protectionLevel="signature|system" />
647
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 <!-- ================================== -->
649 <!-- Permissions for accessing accounts -->
650 <!-- ================================== -->
651 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700652
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700653 <!-- Permissions for direct access to the accounts managed
654 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800655 <permission-group android:name="android.permission-group.ACCOUNTS"
656 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700657 android:icon="@drawable/perm_group_accounts"
658 android:description="@string/permgroupdesc_accounts"
659 android:permissionGroupFlags="personalInfo"
660 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800661
662 <!-- Allows access to the list of accounts in the Accounts Service -->
663 <permission android:name="android.permission.GET_ACCOUNTS"
664 android:permissionGroup="android.permission-group.ACCOUNTS"
665 android:protectionLevel="normal"
666 android:description="@string/permdesc_getAccounts"
667 android:label="@string/permlab_getAccounts" />
668
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700669 <!-- Allows an application to act as an AccountAuthenticator for
670 the AccountManager -->
671 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
672 android:permissionGroup="android.permission-group.ACCOUNTS"
673 android:protectionLevel="dangerous"
674 android:label="@string/permlab_authenticateAccounts"
675 android:description="@string/permdesc_authenticateAccounts" />
676
677 <!-- Allows an application to request authtokens from the AccountManager -->
678 <permission android:name="android.permission.USE_CREDENTIALS"
679 android:permissionGroup="android.permission-group.ACCOUNTS"
680 android:protectionLevel="dangerous"
681 android:label="@string/permlab_useCredentials"
682 android:description="@string/permdesc_useCredentials" />
683
684 <!-- Allows an application to manage the list of accounts in the AccountManager -->
685 <permission android:name="android.permission.MANAGE_ACCOUNTS"
686 android:permissionGroup="android.permission-group.ACCOUNTS"
687 android:protectionLevel="dangerous"
688 android:label="@string/permlab_manageAccounts"
689 android:description="@string/permdesc_manageAccounts" />
690
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700691 <!-- Allows applications to call into AccountAuthenticators. Only
692 the system can get this permission. -->
693 <permission android:name="android.permission.ACCOUNT_MANAGER"
694 android:permissionGroup="android.permission-group.ACCOUNTS"
695 android:protectionLevel="signature"
696 android:description="@string/permdesc_accountManagerService"
697 android:label="@string/permlab_accountManagerService" />
698
699 <!-- ================================== -->
700 <!-- Permissions for accessing hardware that may effect battery life-->
701 <!-- ================================== -->
702 <eat-comment />
703
704 <!-- Used for permissions that provide direct access to the hardware on
705 the device that has an effect on battery life. This includes vibrator,
706 flashlight, etc. -->
707
708 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
709 android:label="@string/permgrouplab_affectsBattery"
710 android:icon="@drawable/perm_group_affects_battery"
711 android:description="@string/permgroupdesc_affectsBattery"
712 android:priority="180" />
713
714 <!-- Allows applications to enter Wi-Fi Multicast mode -->
715 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
716 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
717 android:protectionLevel="dangerous"
718 android:description="@string/permdesc_changeWifiMulticastState"
719 android:label="@string/permlab_changeWifiMulticastState" />
720
721 <!-- Allows access to the vibrator -->
722 <permission android:name="android.permission.VIBRATE"
723 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
724 android:protectionLevel="normal"
725 android:label="@string/permlab_vibrate"
726 android:description="@string/permdesc_vibrate" />
727
728 <!-- Allows access to the flashlight -->
729 <permission android:name="android.permission.FLASHLIGHT"
730 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
731 android:protectionLevel="normal"
732 android:label="@string/permlab_flashlight"
733 android:description="@string/permdesc_flashlight" />
734
735 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
736 from dimming -->
737 <permission android:name="android.permission.WAKE_LOCK"
738 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
739 android:protectionLevel="normal"
740 android:label="@string/permlab_wakeLock"
741 android:description="@string/permdesc_wakeLock" />
742
743 <!-- ==================================================== -->
744 <!-- Permissions related to changing audio settings -->
745 <!-- ==================================================== -->
746
747 <!-- Used for permissions that provide direct access to speaker settings
748 the device. -->
749 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
750 android:label="@string/permgrouplab_audioSettings"
751 android:icon="@drawable/perm_group_audio_settings"
752 android:description="@string/permgroupdesc_audioSettings"
753 android:priority="130" />
754
755 <!-- Allows an application to modify global audio settings -->
756 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
757 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
758 android:protectionLevel="normal"
759 android:label="@string/permlab_modifyAudioSettings"
760 android:description="@string/permdesc_modifyAudioSettings" />
761
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800762 <!-- ================================== -->
763 <!-- Permissions for accessing hardware -->
764 <!-- ================================== -->
765 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800767 <!-- Used for permissions that provide direct access to the hardware on
768 the device. This includes audio, the camera, vibrator, etc. -->
769 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
770 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700771 android:description="@string/permgroupdesc_hardwareControls"
772 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773
Mike Lockwood02eb8742011-02-27 09:10:37 -0800774 <!-- Allows an application to manage preferences and permissions for USB devices
775 @hide -->
776 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400777 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800778 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800779 android:label="@string/permlab_manageUsb"
780 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400781
Mike Lockwood10bc1112011-01-10 08:24:08 -0500782 <!-- Allows an application to access the MTP USB kernel driver.
783 For use only by the device side MTP implementation.
784 @hide -->
785 <permission android:name="android.permission.ACCESS_MTP"
786 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800787 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500788 android:label="@string/permlab_accessMtp"
789 android:description="@string/permdesc_accessMtp" />
790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
792 <permission android:name="android.permission.HARDWARE_TEST"
793 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
794 android:protectionLevel="signature"
795 android:label="@string/permlab_hardware_test"
796 android:description="@string/permdesc_hardware_test" />
797
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500798 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
799 @hide -->
800 <permission android:name="android.permission.NET_ADMIN"
801 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
802 android:protectionLevel="signature" />
803
Jeff Sharkey098d5802012-04-26 17:30:34 -0700804 <!-- Allows registration for remote audio playback. @hide -->
805 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
806 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
807 android:protectionLevel="signature" />
808
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700810 <!-- Permissions associated with audio capture -->
811 <!-- =========================================== -->
812 <eat-comment />
813
814 <!-- Used for permissions that are associated with accessing
815 microphone audio from the device. Note that phone calls also capture audio
816 but are in a separate (more visible) permission group. -->
817 <permission-group android:name="android.permission-group.MICROPHONE"
818 android:label="@string/permgrouplab_microphone"
819 android:icon="@drawable/perm_group_microphone"
820 android:description="@string/permgroupdesc_microphone"
821 android:permissionGroupFlags="personalInfo"
822 android:priority="340" />
823
824 <!-- Allows an application to record audio -->
825 <permission android:name="android.permission.RECORD_AUDIO"
826 android:permissionGroup="android.permission-group.MICROPHONE"
827 android:protectionLevel="dangerous"
828 android:label="@string/permlab_recordAudio" />
829
830
831 <!-- =========================================== -->
832 <!-- Permissions associated with camera and image capture -->
833 <!-- =========================================== -->
834 <eat-comment />
835
836 <!-- Used for permissions that are associated with accessing
837 camera or capturing images/video from the device. -->
838 <permission-group android:name="android.permission-group.CAMERA"
839 android:label="@string/permgrouplab_camera"
840 android:icon="@drawable/perm_group_camera"
841 android:description="@string/permgroupdesc_camera"
842 android:permissionGroupFlags="personalInfo"
843 android:priority="350" />
844
845 <!-- Required to be able to access the camera device.
846 <p>This will automatically enforce the <a
847 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
848 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
849 If you do not require all camera features or can properly operate if a camera
850 is not available, then you must modify your manifest as appropriate in order to
851 install on devices that don't support all camera features.</p> -->
852 <permission android:name="android.permission.CAMERA"
853 android:permissionGroup="android.permission-group.CAMERA"
854 android:protectionLevel="dangerous"
855 android:label="@string/permlab_camera"
856 android:description="@string/permdesc_camera" />
857
858 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859 <!-- Permissions associated with telephony state -->
860 <!-- =========================================== -->
861 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700862
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800863 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700864 telephony state: placing calls, intercepting outgoing calls, reading
865 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800866 <permission-group android:name="android.permission-group.PHONE_CALLS"
867 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700868 android:icon="@drawable/perm_group_phone_calls"
869 android:description="@string/permgroupdesc_phoneCalls"
870 android:permissionGroupFlags="personalInfo"
871 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872
873 <!-- Allows an application to monitor, modify, or abort outgoing
874 calls. -->
875 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
876 android:permissionGroup="android.permission-group.PHONE_CALLS"
877 android:protectionLevel="dangerous"
878 android:label="@string/permlab_processOutgoingCalls"
879 android:description="@string/permdesc_processOutgoingCalls" />
880
881 <!-- Allows modification of the telephony state - power on, mmi, etc.
882 Does not include placing calls. -->
883 <permission android:name="android.permission.MODIFY_PHONE_STATE"
884 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800885 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800886 android:label="@string/permlab_modifyPhoneState"
887 android:description="@string/permdesc_modifyPhoneState" />
888
889 <!-- Allows read only access to phone state. -->
890 <permission android:name="android.permission.READ_PHONE_STATE"
891 android:permissionGroup="android.permission-group.PHONE_CALLS"
892 android:protectionLevel="dangerous"
893 android:label="@string/permlab_readPhoneState"
894 android:description="@string/permdesc_readPhoneState" />
895
Jake Hamby463f2212011-07-21 17:55:53 -0700896 <!-- Allows read access to privileged phone state.
897 @hide Used internally. -->
898 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
899 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800900 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -0700901
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700902 <!-- Allows an application to initiate a phone call without going through
903 the Dialer user interface for the user to confirm the call
904 being placed. -->
905 <permission android:name="android.permission.CALL_PHONE"
906 android:permissionGroup="android.permission-group.PHONE_CALLS"
907 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700908 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700909 android:label="@string/permlab_callPhone"
910 android:description="@string/permdesc_callPhone" />
911
912 <!-- Allows an application to use SIP service -->
913 <permission android:name="android.permission.USE_SIP"
914 android:permissionGroup="android.permission-group.PHONE_CALLS"
915 android:protectionLevel="dangerous"
916 android:description="@string/permdesc_use_sip"
917 android:label="@string/permlab_use_sip" />
918
San Mehat29b57e62009-04-23 09:18:32 -0700919 <!-- ================================== -->
920 <!-- Permissions for sdcard interaction -->
921 <!-- ================================== -->
922 <eat-comment />
923
924 <!-- Group of permissions that are related to SD card access. -->
925 <permission-group android:name="android.permission-group.STORAGE"
926 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700927 android:icon="@drawable/perm_group_storage"
928 android:description="@string/permgroupdesc_storage"
929 android:permissionGroupFlags="personalInfo"
930 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -0700931
Dianne Hackborn79245122012-03-12 10:51:26 -0700932 <!-- Allows an application to read from external storage -->
933 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700934 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -0700935 android:label="@string/permlab_sdcardRead"
936 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700937 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -0700938
San Mehat5a3a77d2009-06-01 09:25:28 -0700939 <!-- Allows an application to write to external storage -->
940 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -0700941 android:permissionGroup="android.permission-group.STORAGE"
942 android:label="@string/permlab_sdcardWrite"
943 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -0700944 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -0700945
Mike Lockwood1e23db42011-04-22 07:05:21 -0700946 <!-- Allows an application to write to internal media storage
947 @hide -->
948 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
949 android:permissionGroup="android.permission-group.STORAGE"
950 android:label="@string/permlab_mediaStorageWrite"
951 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -0800952 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -0700953
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700954 <!-- ================================== -->
955 <!-- Permissions for screenlock -->
956 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800957 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700958
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700959 <!-- Group of permissions that are related to the screenlock. -->
960 <permission-group android:name="android.permission-group.SCREENLOCK"
961 android:label="@string/permgrouplab_storage"
962 android:icon="@drawable/perm_group_screenlock"
963 android:permissionGroupFlags="personalInfo"
964 android:description="@string/permgroupdesc_storage"
965 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700967 <!-- Allows applications to disable the keyguard -->
968 <permission android:name="android.permission.DISABLE_KEYGUARD"
969 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800970 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700971 android:description="@string/permdesc_disableKeyguard"
972 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700974 <!-- ================================== -->
975 <!-- Permissions to access other installed applications -->
976 <!-- ================================== -->
977 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700979 <!-- Group of permissions that are related to the other applications
980 installed on the system. Examples include such as listing
981 running apps, or killing background processes. -->
982 <permission-group android:name="android.permission-group.APP_INFO"
983 android:label="@string/permgrouplab_appInfo"
984 android:icon="@drawable/perm_group_app_info"
985 android:description="@string/permgroupdesc_appInfo"
986 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987
988 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -0700989 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800990 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700991 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992 android:protectionLevel="dangerous"
993 android:label="@string/permlab_getTasks"
994 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -0700995 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -0700996 across the users on the device, using singleton services and
997 user-targeted broadcasts. This permission is not available to
998 third party applications. -->
999 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
1000 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1001 android:protectionLevel="signature|system|development"
1002 android:label="@string/permlab_interactAcrossUsers"
1003 android:description="@string/permdesc_interactAcrossUsers" />
1004
1005 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
1006 that removes restrictions on where broadcasts can be sent and allows other
1007 types of interactions. -->
1008 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1009 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1010 android:protectionLevel="signature"
1011 android:label="@string/permlab_interactAcrossUsersFull"
1012 android:description="@string/permdesc_interactAcrossUsersFull" />
1013
Dianne Hackborn8832c182012-09-17 17:20:24 -07001014 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001015 users on the device. This permission is not available to
1016 third party applications. -->
1017 <permission android:name="android.permission.MANAGE_USERS"
1018 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001019 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001020 android:label="@string/permlab_manageUsers"
1021 android:description="@string/permdesc_manageUsers" />
1022
Dianne Hackborn8238e712012-04-24 11:15:40 -07001023 <!-- Allows an application to get full detailed information about
1024 recently running tasks, with full fidelity to the real state.
1025 @hide -->
1026 <permission android:name="android.permission.GET_DETAILED_TASKS"
1027 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1028 android:protectionLevel="signature"
1029 android:label="@string/permlab_getDetailedTasks"
1030 android:description="@string/permdesc_getDetailedTasks" />
1031
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001032 <!-- Allows an application to change the Z-order of tasks -->
1033 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001034 android:permissionGroup="android.permission-group.APP_INFO"
1035 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001036 android:label="@string/permlab_reorderTasks"
1037 android:description="@string/permdesc_reorderTasks" />
1038
Dianne Hackborn24a12102011-07-29 15:52:05 -07001039 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001040 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001041 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001042 android:protectionLevel="signature"
1043 android:label="@string/permlab_removeTasks"
1044 android:description="@string/permdesc_removeTasks" />
1045
Jeff Sharkey35be7562012-04-18 19:16:15 -07001046 <!-- Allows an application to start any activity, regardless of permission
1047 protection or exported state. @hide -->
1048 <permission android:name="android.permission.START_ANY_ACTIVITY"
1049 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1050 android:protectionLevel="signature"
1051 android:label="@string/permlab_startAnyActivity"
1052 android:description="@string/permdesc_startAnyActivity" />
1053
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001054 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1055 API is no longer supported. -->
1056 <permission android:name="android.permission.RESTART_PACKAGES"
1057 android:permissionGroup="android.permission-group.APP_INFO"
1058 android:protectionLevel="normal"
1059 android:label="@string/permlab_killBackgroundProcesses"
1060 android:description="@string/permdesc_killBackgroundProcesses" />
1061
1062 <!-- Allows an application to call
1063 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1064 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1065 android:permissionGroup="android.permission-group.APP_INFO"
1066 android:protectionLevel="normal"
1067 android:label="@string/permlab_killBackgroundProcesses"
1068 android:description="@string/permdesc_killBackgroundProcesses" />
1069
1070 <!-- ================================== -->
1071 <!-- Permissions affecting the display of other applications -->
1072 <!-- ================================== -->
1073 <eat-comment />
1074
1075 <!-- Group of permissions that allow manipulation of how
1076 another application displays UI to the user. -->
1077 <permission-group android:name="android.permission-group.DISPLAY"
1078 android:label="@string/permgrouplab_display"
1079 android:icon="@drawable/perm_group_display"
1080 android:description="@string/permgroupdesc_display"
1081 android:priority="190"/>
1082
1083 <!-- Allows an application to open windows using the type
1084 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1085 shown on top of all other applications. Very few applications
1086 should use this permission; these windows are intended for
1087 system-level interaction with the user. -->
1088 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1089 android:permissionGroup="android.permission-group.DISPLAY"
1090 android:protectionLevel="dangerous"
1091 android:label="@string/permlab_systemAlertWindow"
1092 android:description="@string/permdesc_systemAlertWindow" />
1093
1094 <!-- ================================== -->
1095 <!-- Permissions affecting the system wallpaper -->
1096 <!-- ================================== -->
1097 <eat-comment />
1098
1099 <!-- Group of permissions that allow manipulation of how
1100 another application displays UI to the user. -->
1101 <permission-group android:name="android.permission-group.WALLPAPER"
1102 android:label="@string/permgrouplab_wallpaper"
1103 android:icon="@drawable/perm_group_wallpaper"
1104 android:description="@string/permgroupdesc_wallpaper"
1105 android:priority="150" />
1106
1107 <!-- Allows applications to set the wallpaper -->
1108 <permission android:name="android.permission.SET_WALLPAPER"
1109 android:permissionGroup="android.permission-group.WALLPAPER"
1110 android:protectionLevel="normal"
1111 android:label="@string/permlab_setWallpaper"
1112 android:description="@string/permdesc_setWallpaper" />
1113
1114 <!-- Allows applications to set the wallpaper hints -->
1115 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1116 android:permissionGroup="android.permission-group.WALLPAPER"
1117 android:protectionLevel="normal"
1118 android:label="@string/permlab_setWallpaperHints"
1119 android:description="@string/permdesc_setWallpaperHints" />
1120
1121 <!-- ============================================ -->
1122 <!-- Permissions for changing the system clock -->
1123 <!-- ============================================ -->
1124 <eat-comment />
1125
1126 <!-- Group of permissions that are related to system clock. -->
1127 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1128 android:label="@string/permgrouplab_systemClock"
1129 android:icon="@drawable/perm_group_system_clock"
1130 android:description="@string/permgroupdesc_systemClock"
1131 android:priority="140" />
1132
1133 <!-- Allows applications to set the system time -->
1134 <permission android:name="android.permission.SET_TIME"
1135 android:protectionLevel="signature|system"
1136 android:label="@string/permlab_setTime"
1137 android:description="@string/permdesc_setTime" />
1138
1139 <!-- Allows applications to set the system time zone -->
1140 <permission android:name="android.permission.SET_TIME_ZONE"
1141 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1142 android:protectionLevel="normal"
1143 android:label="@string/permlab_setTimeZone"
1144 android:description="@string/permdesc_setTimeZone" />
1145
1146 <!-- ==================================================== -->
1147 <!-- Permissions related to changing status bar -->
1148 <!-- ==================================================== -->
1149
1150 <!-- Used for permissions that change the status bar -->
1151 <permission-group android:name="android.permission-group.STATUS_BAR"
1152 android:label="@string/permgrouplab_statusBar"
1153 android:icon="@drawable/perm_group_status_bar"
1154 android:description="@string/permgroupdesc_statusBar"
1155 android:priority="110" />
1156
1157 <!-- Allows an application to expand or collapse the status bar. -->
1158 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1159 android:permissionGroup="android.permission-group.STATUS_BAR"
1160 android:protectionLevel="normal"
1161 android:label="@string/permlab_expandStatusBar"
1162 android:description="@string/permdesc_expandStatusBar" />
1163
1164 <!-- ==================================================== -->
1165 <!-- Permissions related to accessing sync settings -->
1166 <!-- ==================================================== -->
1167
1168 <!-- Used for permissions that access the sync settings or sync
1169 related information. -->
1170 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1171 android:label="@string/permgrouplab_syncSettings"
1172 android:icon="@drawable/perm_group_sync_settings"
1173 android:description="@string/permgroupdesc_syncSettings"
1174 android:priority="120" />
1175
1176 <!-- Allows applications to read the sync settings -->
1177 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1178 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1179 android:protectionLevel="normal"
1180 android:description="@string/permdesc_readSyncSettings"
1181 android:label="@string/permlab_readSyncSettings" />
1182
1183 <!-- Allows applications to write the sync settings -->
1184 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1185 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1186 android:protectionLevel="normal"
1187 android:description="@string/permdesc_writeSyncSettings"
1188 android:label="@string/permlab_writeSyncSettings" />
1189
1190 <!-- Allows applications to read the sync stats -->
1191 <permission android:name="android.permission.READ_SYNC_STATS"
1192 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1193 android:protectionLevel="normal"
1194 android:description="@string/permdesc_readSyncStats"
1195 android:label="@string/permlab_readSyncStats" />
1196
1197
1198 <!-- ============================================ -->
1199 <!-- Permissions for low-level system interaction -->
1200 <!-- ============================================ -->
1201 <eat-comment />
1202
1203 <!-- Group of permissions that are related to system APIs. Many
1204 of these are not permissions the user will be expected to understand,
1205 and such permissions should generally be marked as "normal" protection
1206 level so they don't get displayed. This can also, however, be used
1207 for miscellaneous features that provide access to the operating system,
1208 such as writing the global system settings. -->
1209 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1210 android:label="@string/permgrouplab_systemTools"
1211 android:icon="@drawable/perm_group_system_tools"
1212 android:description="@string/permgroupdesc_systemTools"
1213 android:priority="100" />
1214
1215 <!-- @hide Change the screen compatibility mode of applications -->
1216 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1217 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1218 android:protectionLevel="signature"
1219 android:label="@string/permlab_setScreenCompatibility"
1220 android:description="@string/permdesc_setScreenCompatibility" />
1221
1222 <!-- Allows an application to access all multi-user external storage @hide -->
1223 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1224 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1225 android:label="@string/permlab_sdcardAccessAll"
1226 android:description="@string/permdesc_sdcardAccessAll"
1227 android:protectionLevel="signature" />
1228
1229 <!-- Allows an application to modify the current configuration, such
1230 as locale. -->
1231 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001232 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001233 android:protectionLevel="signature|system|development"
1234 android:label="@string/permlab_changeConfiguration"
1235 android:description="@string/permdesc_changeConfiguration" />
1236
1237 <!-- Allows an application to read or write the system settings. -->
1238 <permission android:name="android.permission.WRITE_SETTINGS"
1239 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1240 android:protectionLevel="normal"
1241 android:label="@string/permlab_writeSettings"
1242 android:description="@string/permdesc_writeSettings" />
1243
1244 <!-- Allows an application to modify the Google service map. -->
1245 <permission android:name="android.permission.WRITE_GSERVICES"
1246 android:protectionLevel="signature|system"
1247 android:label="@string/permlab_writeGservices"
1248 android:description="@string/permdesc_writeGservices" />
1249
Adrian Ludwig4c522352012-06-01 14:22:03 -07001250 <!-- @hide Change the screen compatibility mode of applications -->
1251 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1252 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1253 android:protectionLevel="signature"
1254 android:label="@string/permlab_setScreenCompatibility"
1255 android:description="@string/permdesc_setScreenCompatibility" />
1256
1257 <!-- Allows an application to modify the current configuration, such
1258 as locale. -->
1259 <permission android:name="android.permission.CHANGE_CONFIGURATION"
1260 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001261 android:protectionLevel="system|signature"
Adrian Ludwig4c522352012-06-01 14:22:03 -07001262 android:label="@string/permlab_changeConfiguration"
1263 android:description="@string/permdesc_changeConfiguration" />
1264
Dianne Hackborn03abb812010-01-04 18:43:19 -08001265 <!-- Allows an application to call
1266 {@link android.app.ActivityManager#forceStopPackage}.
1267 @hide -->
1268 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1269 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1270 android:protectionLevel="signature"
1271 android:label="@string/permlab_forceStopPackages"
1272 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273
Dianne Hackborn24a12102011-07-29 15:52:05 -07001274 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001275 An active window is the window that has fired an accessibility event. -->
1276 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1277 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001278 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001279 android:label="@string/permlab_retrieve_window_content"
1280 android:description="@string/permdesc_retrieve_window_content" />
1281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001282 <!-- Modify the global animation scaling factor. -->
1283 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1284 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001285 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 android:label="@string/permlab_setAnimationScale"
1287 android:description="@string/permdesc_setAnimationScale" />
1288
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001289 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001290 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001291 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001292 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001293 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001294 android:label="@string/permlab_persistentActivity"
1295 android:description="@string/permdesc_persistentActivity" />
1296
1297 <!-- Allows an application to find out the space used by any package. -->
1298 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1299 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1300 android:protectionLevel="normal"
1301 android:label="@string/permlab_getPackageSize"
1302 android:description="@string/permdesc_getPackageSize" />
1303
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001304 <!-- @deprecated No longer useful, see
1305 {@link android.content.pm.PackageManager#addPackageToPreferred}
1306 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001307 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1308 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001309 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 android:label="@string/permlab_setPreferredApplications"
1311 android:description="@string/permdesc_setPreferredApplications" />
1312
1313 <!-- Allows an application to receive the
1314 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1315 broadcast after the system finishes booting. If you don't
1316 request this permission, you will not receive the broadcast at
1317 that time. Though holding this permission does not have any
1318 security implications, it can have a negative impact on the
1319 user experience by increasing the amount of time it takes the
1320 system to start and allowing applications to have themselves
1321 running without the user being aware of them. As such, you must
1322 explicitly declare your use of this facility to make that visible
1323 to the user. -->
1324 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001325 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001326 android:protectionLevel="normal"
1327 android:label="@string/permlab_receiveBootCompleted"
1328 android:description="@string/permdesc_receiveBootCompleted" />
1329
1330 <!-- Allows an application to broadcast sticky intents. These are
1331 broadcasts whose data is held by the system after being finished,
1332 so that clients can quickly retrieve that data without having
1333 to wait for the next broadcast. -->
1334 <permission android:name="android.permission.BROADCAST_STICKY"
1335 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1336 android:protectionLevel="normal"
1337 android:label="@string/permlab_broadcastSticky"
1338 android:description="@string/permdesc_broadcastSticky" />
1339
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001340 <!-- Allows mounting and unmounting file systems for removable storage. -->
1341 <permission android:name="android.permission.MOUNT_UNMOUNT_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_unmount_filesystems"
1345 android:description="@string/permdesc_mount_unmount_filesystems" />
1346
1347 <!-- Allows formatting file systems for removable storage. -->
1348 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1349 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001350 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 android:label="@string/permlab_mount_format_filesystems"
1352 android:description="@string/permdesc_mount_format_filesystems" />
1353
San Mehat02735bc2010-01-26 15:18:08 -08001354 <!-- Allows access to ASEC non-destructive API calls
1355 @hide -->
1356 <permission android:name="android.permission.ASEC_ACCESS"
1357 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001358 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001359 android:label="@string/permlab_asec_access"
1360 android:description="@string/permdesc_asec_access" />
1361
1362 <!-- Allows creation of ASEC volumes
1363 @hide -->
1364 <permission android:name="android.permission.ASEC_CREATE"
1365 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001366 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001367 android:label="@string/permlab_asec_create"
1368 android:description="@string/permdesc_asec_create" />
1369
1370 <!-- Allows destruction of ASEC volumes
1371 @hide -->
1372 <permission android:name="android.permission.ASEC_DESTROY"
1373 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001374 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001375 android:label="@string/permlab_asec_destroy"
1376 android:description="@string/permdesc_asec_destroy" />
1377
1378 <!-- Allows mount / unmount of ASEC volumes
1379 @hide -->
1380 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1381 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001382 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001383 android:label="@string/permlab_asec_mount_unmount"
1384 android:description="@string/permdesc_asec_mount_unmount" />
1385
1386 <!-- Allows rename of ASEC volumes
1387 @hide -->
1388 <permission android:name="android.permission.ASEC_RENAME"
1389 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001390 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001391 android:label="@string/permlab_asec_rename"
1392 android:description="@string/permdesc_asec_rename" />
1393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394 <!-- Allows applications to write the apn settings -->
1395 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1396 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001397 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001398 android:description="@string/permdesc_writeApnSettings"
1399 android:label="@string/permlab_writeApnSettings" />
1400
Fred Quintana60307342009-03-24 22:48:12 -07001401 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 ContentProvider. -->
1403 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1404 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1405 android:label="@string/permlab_subscribedFeedsRead"
1406 android:description="@string/permdesc_subscribedFeedsRead"
1407 android:protectionLevel="normal" />
1408 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1409 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1410 android:label="@string/permlab_subscribedFeedsWrite"
1411 android:description="@string/permdesc_subscribedFeedsWrite"
1412 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001414 <!-- Allows applications to change network connectivity state -->
1415 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001416 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001417 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 android:description="@string/permdesc_changeNetworkState"
1419 android:label="@string/permlab_changeNetworkState" />
1420
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001421 <!-- Allows an application to clear the caches of all installed
1422 applications on the device. -->
1423 <permission android:name="android.permission.CLEAR_APP_CACHE"
1424 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1425 android:protectionLevel="dangerous"
1426 android:label="@string/permlab_clearAppCache"
1427 android:description="@string/permdesc_clearAppCache" />
1428
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001429 <!-- Allows an application to use any media decoder when decoding for playback
1430 @hide -->
1431 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001432 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001433 android:label="@string/permlab_anyCodecForPlayback"
1434 android:description="@string/permdesc_anyCodecForPlayback" />
1435
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001436 <!-- ========================================= -->
1437 <!-- Permissions for special development tools -->
1438 <!-- ========================================= -->
1439 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001440
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 <!-- Group of permissions that are related to development features. These
1442 are not permissions that should appear in normal applications; they
1443 protect APIs that are intended only to be used for development
1444 purposes. -->
1445 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1446 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001447 android:description="@string/permgroupdesc_developmentTools"
1448 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001449
Dianne Hackborne639da72012-02-21 15:11:13 -08001450 <!-- Allows an application to read or write the secure system settings. -->
1451 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1452 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1453 android:protectionLevel="signature|system|development"
1454 android:label="@string/permlab_writeSecureSettings"
1455 android:description="@string/permdesc_writeSecureSettings" />
1456
1457 <!-- Allows an application to retrieve state dump information from system
1458 services. -->
1459 <permission android:name="android.permission.DUMP"
1460 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1461 android:protectionLevel="signature|system|development"
1462 android:label="@string/permlab_dump"
1463 android:description="@string/permdesc_dump" />
1464
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001465 <!-- Allows an application to read the low-level system log files.
1466 Log entries can contain the user's private information,
1467 which is why this permission is not available to normal apps. -->
1468 <permission android:name="android.permission.READ_LOGS"
1469 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1470 android:protectionLevel="signature|system|development"
1471 android:label="@string/permlab_readLogs"
1472 android:description="@string/permdesc_readLogs" />
1473
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 <!-- Configure an application for debugging. -->
1475 <permission android:name="android.permission.SET_DEBUG_APP"
1476 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001477 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 android:label="@string/permlab_setDebugApp"
1479 android:description="@string/permdesc_setDebugApp" />
1480
1481 <!-- Allows an application to set the maximum number of (not needed)
1482 application processes that can be running. -->
1483 <permission android:name="android.permission.SET_PROCESS_LIMIT"
1484 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001485 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001486 android:label="@string/permlab_setProcessLimit"
1487 android:description="@string/permdesc_setProcessLimit" />
1488
1489 <!-- Allows an application to control whether activities are immediately
1490 finished when put in the background. -->
1491 <permission android:name="android.permission.SET_ALWAYS_FINISH"
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_setAlwaysFinish"
1495 android:description="@string/permdesc_setAlwaysFinish" />
1496
1497 <!-- Allow an application to request that a signal be sent to all persistent processes -->
1498 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1499 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001500 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 android:label="@string/permlab_signalPersistentProcesses"
1502 android:description="@string/permdesc_signalPersistentProcesses" />
1503
1504 <!-- ==================================== -->
1505 <!-- Private (signature-only) permissions -->
1506 <!-- ==================================== -->
1507 <eat-comment />
1508
1509 <!-- Allows applications to RW to diagnostic resources. -->
1510 <permission android:name="android.permission.DIAGNOSTIC"
1511 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1512 android:protectionLevel="signature"
1513 android:description="@string/permdesc_diagnostic"
1514 android:label="@string/permlab_diagnostic" />
1515
1516 <!-- Allows an application to open, close, or disable the status bar
1517 and its icons. -->
1518 <permission android:name="android.permission.STATUS_BAR"
1519 android:label="@string/permlab_statusBar"
1520 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001521 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522
Joe Onorato8bc6c512010-06-04 16:21:12 -04001523 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1524 @hide -->
1525 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1526 android:label="@string/permlab_statusBarService"
1527 android:description="@string/permdesc_statusBarService"
1528 android:protectionLevel="signature" />
1529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 <!-- Allows an application to force a BACK operation on whatever is the
1531 top activity. -->
1532 <permission android:name="android.permission.FORCE_BACK"
1533 android:label="@string/permlab_forceBack"
1534 android:description="@string/permdesc_forceBack"
1535 android:protectionLevel="signature" />
1536
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001537 <!-- Allows an application to update device statistics. Not for
1538 use by third party apps. -->
1539 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001540 android:label="@string/permlab_updateBatteryStats"
1541 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001542 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543
1544 <!-- Allows an application to open windows that are for use by parts
1545 of the system user interface. Not for use by third party apps. -->
1546 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1547 android:label="@string/permlab_internalSystemWindow"
1548 android:description="@string/permdesc_internalSystemWindow"
1549 android:protectionLevel="signature" />
1550
1551 <!-- Allows an application to manage (create, destroy,
1552 Z-order) application tokens in the window manager. This is only
1553 for use by the system. -->
1554 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1555 android:label="@string/permlab_manageAppTokens"
1556 android:description="@string/permdesc_manageAppTokens"
1557 android:protectionLevel="signature" />
1558
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001559 <!-- @hide Allows the application to temporarily freeze the screen for a
1560 full-screen transition. -->
1561 <permission android:name="android.permission.FREEZE_SCREEN"
1562 android:label="@string/permlab_freezeScreen"
1563 android:description="@string/permdesc_freezeScreen"
1564 android:protectionLevel="signature" />
1565
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001566 <!-- Allows an application to inject user events (keys, touch, trackball)
1567 into the event stream and deliver them to ANY window. Without this
1568 permission, you can only deliver events to windows in your own process.
1569 Very few applications should need to use this permission. -->
1570 <permission android:name="android.permission.INJECT_EVENTS"
1571 android:label="@string/permlab_injectEvents"
1572 android:description="@string/permdesc_injectEvents"
1573 android:protectionLevel="signature" />
1574
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001575 <!-- @hide Allows an application to register an input filter which filters the stream
1576 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1577 <permission android:name="android.permission.FILTER_EVENTS"
1578 android:label="@string/permlab_filter_events"
1579 android:description="@string/permdesc_filter_events"
1580 android:protectionLevel="signature" />
1581
1582 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1583 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1584 android:label="@string/permlab_retrieve_window_info"
1585 android:description="@string/permdesc_retrieve_window_info"
1586 android:protectionLevel="signature" />
1587
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001588 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1589 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1590 android:label="@string/permlab_temporary_enable_accessibility"
1591 android:description="@string/permdesc_temporary_enable_accessibility"
1592 android:protectionLevel="signature" />
1593
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001594 <!-- @hide Allows an application to magnify the content of a display. -->
1595 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1596 android:label="@string/permlab_magnify_display"
1597 android:description="@string/permdesc_magnify_display"
1598 android:protectionLevel="signature" />
1599
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001600 <!-- Allows an application to watch and control how activities are
1601 started globally in the system. Only for is in debugging
1602 (usually the monkey command). -->
1603 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1604 android:label="@string/permlab_runSetActivityWatcher"
1605 android:description="@string/permdesc_runSetActivityWatcher"
1606 android:protectionLevel="signature" />
1607
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001608 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001609 to put the higher-level system there into a shutdown state.
1610 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001611 <permission android:name="android.permission.SHUTDOWN"
1612 android:label="@string/permlab_shutdown"
1613 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001614 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001615
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001616 <!-- Allows an application to tell the activity manager to temporarily
1617 stop application switches, putting it into a special mode that
1618 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001619 critical UI such as the home screen.
1620 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001621 <permission android:name="android.permission.STOP_APP_SWITCHES"
1622 android:label="@string/permlab_stopAppSwitches"
1623 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001624 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626 <!-- Allows an application to retrieve the current state of keys and
Jeff Brownac143512012-04-05 18:57:33 -07001627 switches. This is only for use by the system.
1628 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 <permission android:name="android.permission.READ_INPUT_STATE"
1630 android:label="@string/permlab_readInputState"
1631 android:description="@string/permdesc_readInputState"
1632 android:protectionLevel="signature" />
1633
Dianne Hackbornd6847842010-01-12 18:14:19 -08001634 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1635 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636 <permission android:name="android.permission.BIND_INPUT_METHOD"
1637 android:label="@string/permlab_bindInputMethod"
1638 android:description="@string/permdesc_bindInputMethod"
1639 android:protectionLevel="signature" />
1640
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001641 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001642 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001643 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1644 android:label="@string/permlab_bindAccessibilityService"
1645 android:description="@string/permdesc_bindAccessibilityService"
1646 android:protectionLevel="signature" />
1647
satok988323c2011-06-22 16:38:13 +09001648 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1649 to ensure that only the system can bind to it. -->
1650 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1651 android:label="@string/permlab_bindTextService"
1652 android:description="@string/permdesc_bindTextService"
1653 android:protectionLevel="signature" />
1654
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001655 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001656 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001657 <permission android:name="android.permission.BIND_VPN_SERVICE"
1658 android:label="@string/permlab_bindVpnService"
1659 android:description="@string/permdesc_bindVpnService"
1660 android:protectionLevel="signature" />
1661
Dianne Hackbornd6847842010-01-12 18:14:19 -08001662 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1663 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001664 <permission android:name="android.permission.BIND_WALLPAPER"
1665 android:label="@string/permlab_bindWallpaper"
1666 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001667 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001668
Dianne Hackbornd6847842010-01-12 18:14:19 -08001669 <!-- Must be required by device administration receiver, to ensure that only the
1670 system can interact with it. -->
1671 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1672 android:label="@string/permlab_bindDeviceAdmin"
1673 android:description="@string/permdesc_bindDeviceAdmin"
1674 android:protectionLevel="signature" />
1675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001676 <!-- Allows low-level access to setting the orientation (actually
1677 rotation) of the screen. Not for use by normal applications. -->
1678 <permission android:name="android.permission.SET_ORIENTATION"
1679 android:label="@string/permlab_setOrientation"
1680 android:description="@string/permdesc_setOrientation"
1681 android:protectionLevel="signature" />
1682
Jeff Brown1a84fd12011-06-02 01:26:32 -07001683 <!-- Allows low-level access to setting the pointer speed.
1684 Not for use by normal applications. -->
1685 <permission android:name="android.permission.SET_POINTER_SPEED"
1686 android:label="@string/permlab_setPointerSpeed"
1687 android:description="@string/permdesc_setPointerSpeed"
1688 android:protectionLevel="signature" />
1689
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001690 <!-- Allows low-level access to setting the keyboard layout.
Jeff Brown507f5582012-05-07 19:06:06 -07001691 Not for use by normal applications.
1692 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001693 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1694 android:label="@string/permlab_setKeyboardLayout"
1695 android:description="@string/permdesc_setKeyboardLayout"
1696 android:protectionLevel="signature" />
1697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001698 <!-- Allows an application to install packages. -->
1699 <permission android:name="android.permission.INSTALL_PACKAGES"
1700 android:label="@string/permlab_installPackages"
1701 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001702 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001703
1704 <!-- Allows an application to clear user data -->
1705 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1706 android:label="@string/permlab_clearAppUserData"
1707 android:description="@string/permdesc_clearAppUserData"
1708 android:protectionLevel="signature" />
1709
1710 <!-- Allows an application to delete cache files. -->
1711 <permission android:name="android.permission.DELETE_CACHE_FILES"
1712 android:label="@string/permlab_deleteCacheFiles"
1713 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001714 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001715
1716 <!-- Allows an application to delete packages. -->
1717 <permission android:name="android.permission.DELETE_PACKAGES"
1718 android:label="@string/permlab_deletePackages"
1719 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001720 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001721
Jeff Brownec7c78f2010-03-30 23:37:25 -07001722 <!-- Allows an application to move location of installed package.
1723 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001724 <permission android:name="android.permission.MOVE_PACKAGE"
1725 android:label="@string/permlab_movePackage"
1726 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001727 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001728
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001729 <!-- Allows an application to change whether an application component (other than its own) is
1730 enabled or not. -->
1731 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1732 android:label="@string/permlab_changeComponentState"
1733 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001734 android:protectionLevel="signature|system" />
1735
1736 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1737 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1738 android:label="@string/permlab_grantRevokePermissions"
1739 android:description="@string/permdesc_grantRevokePermissions"
1740 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001741
1742 <!-- Allows an application to use SurfaceFlinger's low level features -->
1743 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1744 android:label="@string/permlab_accessSurfaceFlinger"
1745 android:description="@string/permdesc_accessSurfaceFlinger"
1746 android:protectionLevel="signature" />
1747
1748 <!-- Allows an application to take screen shots and more generally
1749 get access to the frame buffer data -->
1750 <permission android:name="android.permission.READ_FRAME_BUFFER"
1751 android:label="@string/permlab_readFrameBuffer"
1752 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001753 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001754
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001755 <!-- Allows an application to configure and connect to Wifi displays
1756 @hide -->
1757 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1758 android:label="@string/permlab_configureWifiDisplay"
1759 android:description="@string/permdesc_configureWifiDisplay"
1760 android:protectionLevel="signature" />
1761
1762 <!-- Allows an application to control low-level features of Wifi displays
1763 such as opening an RTSP socket. This permission should only be used
1764 by the display manager.
1765 @hide -->
1766 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1767 android:label="@string/permlab_controlWifiDisplay"
1768 android:description="@string/permdesc_controlWifiDisplay"
1769 android:protectionLevel="signature" />
1770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 <!-- Required to be able to disable the device (very dangerous!). -->
1772 <permission android:name="android.permission.BRICK"
1773 android:label="@string/permlab_brick"
1774 android:description="@string/permdesc_brick"
1775 android:protectionLevel="signature" />
1776
1777 <!-- Required to be able to reboot the device. -->
1778 <permission android:name="android.permission.REBOOT"
1779 android:label="@string/permlab_reboot"
1780 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001781 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001782
1783 <!-- Allows low-level access to power management -->
1784 <permission android:name="android.permission.DEVICE_POWER"
1785 android:label="@string/permlab_devicePower"
1786 android:description="@string/permdesc_devicePower"
1787 android:protectionLevel="signature" />
1788
Dianne Hackborn8832c182012-09-17 17:20:24 -07001789 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001790 <permission android:name="android.permission.NET_TUNNELING"
1791 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1792 android:protectionLevel="signature" />
1793
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794 <!-- Run as a manufacturer test application, running as the root user.
1795 Only available when the device is running in manufacturer test mode. -->
1796 <permission android:name="android.permission.FACTORY_TEST"
1797 android:label="@string/permlab_factoryTest"
1798 android:description="@string/permdesc_factoryTest"
1799 android:protectionLevel="signature" />
1800
1801 <!-- Allows an application to broadcast a notification that an application
1802 package has been removed. -->
1803 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1804 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1805 android:label="@string/permlab_broadcastPackageRemoved"
1806 android:description="@string/permdesc_broadcastPackageRemoved"
1807 android:protectionLevel="signature" />
1808
1809 <!-- Allows an application to broadcast an SMS receipt notification -->
1810 <permission android:name="android.permission.BROADCAST_SMS"
1811 android:permissionGroup="android.permission-group.MESSAGES"
1812 android:label="@string/permlab_broadcastSmsReceived"
1813 android:description="@string/permdesc_broadcastSmsReceived"
1814 android:protectionLevel="signature" />
1815
1816 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1817 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1818 android:permissionGroup="android.permission-group.MESSAGES"
1819 android:label="@string/permlab_broadcastWapPush"
1820 android:description="@string/permdesc_broadcastWapPush"
1821 android:protectionLevel="signature" />
1822
1823 <permission android:name="android.permission.MASTER_CLEAR"
1824 android:label="@string/permlab_masterClear"
1825 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08001826 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001827
1828 <!-- Allows an application to call any phone number, including emergency
1829 numbers, without going through the Dialer user interface for the user
1830 to confirm the call being placed. -->
1831 <permission android:name="android.permission.CALL_PRIVILEGED"
1832 android:label="@string/permlab_callPrivileged"
1833 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08001834 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001835
Jim Miller767be5f2009-08-25 19:33:57 -07001836 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1837 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1838 android:label="@string/permlab_performCdmaProvisioning"
1839 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08001840 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07001841
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001842 <!-- Allows enabling/disabling location update notifications from
1843 the radio. Not for use by normal applications. -->
1844 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1845 android:label="@string/permlab_locationUpdates"
1846 android:description="@string/permdesc_locationUpdates"
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 read/write access to the "properties" table in the checkin
1850 database, to change values that get uploaded. -->
1851 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1852 android:label="@string/permlab_checkinProperties"
1853 android:description="@string/permdesc_checkinProperties"
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 component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001857 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001858 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1859 android:label="@string/permlab_pkgUsageStats"
1860 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001861 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001862
1863 <!-- Allows an application to collect battery statistics -->
1864 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001865 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001866 android:label="@string/permlab_batteryStats"
1867 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001868 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001869
Christopher Tate181fafa2009-05-14 11:12:14 -07001870 <!-- Allows an application to control the backup and restore process
1871 @hide pending API council -->
1872 <permission android:name="android.permission.BACKUP"
1873 android:label="@string/permlab_backup"
1874 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08001875 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001876
Christopher Tate4a627c72011-04-01 14:43:32 -07001877 <!-- Allows a package to launch the secure full-backup confirmation UI.
1878 ONLY the system process may hold this permission.
1879 @hide -->
1880 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
1881 android:label="@string/permlab_confirm_full_backup"
1882 android:description="@string/permdesc_confirm_full_backup"
1883 android:protectionLevel="signature" />
1884
Winson Chung81f39eb2011-01-11 18:05:01 -08001885 <!-- Must be required by a {@link android.widget.RemoteViewsService},
1886 to ensure that only the system can bind to it. -->
1887 <permission android:name="android.permission.BIND_REMOTEVIEWS"
1888 android:label="@string/permlab_bindRemoteViews"
1889 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08001890 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08001891
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001892 <!-- Allows an application to tell the AppWidget service which application
1893 can access AppWidget's data. The normal user flow is that a user
1894 picks an AppWidget to go into a particular host, thereby giving that
1895 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896 An application that has this permission should honor that contract.
1897 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001898 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001899 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1900 android:label="@string/permlab_bindGadget"
1901 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08001902 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001903
Michael Jurka61a5b012012-04-13 10:39:45 -07001904 <!-- Internal permission allowing an application to query/set which
1905 applications can bind AppWidgets.
1906 @hide -->
1907 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
1908 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1909 android:protectionLevel="signature|system" />
1910
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001911 <!-- Allows applications to change the background data setting
1912 @hide pending API council -->
1913 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
1914 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1915 android:protectionLevel="signature"
1916 android:description="@string/permdesc_changeBackgroundDataSetting"
1917 android:label="@string/permlab_changeBackgroundDataSetting" />
1918
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001919 <!-- This permission can be used on content providers to allow the global
1920 search system to access their data. Typically it used when the
1921 provider has some permissions protecting it (which global search
1922 would not be expected to hold), and added as a read-only permission
1923 to the path in the provider where global search queries are
1924 performed. This permission can not be held by regular applications;
1925 it is used by applications to protect themselves from everyone else
1926 besides global search. -->
1927 <permission android:name="android.permission.GLOBAL_SEARCH"
1928 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001929 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001930
1931 <!-- Internal permission protecting access to the global search
1932 system: ensures that only the system can access the provider
1933 to perform queries (since this otherwise provides unrestricted
1934 access to a variety of content providers), and to write the
1935 search statistics (to keep applications from gaming the source
1936 ranking).
1937 @hide -->
1938 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
1939 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1940 android:protectionLevel="signature" />
1941
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001942 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001943 @hide XXX Change to signature once the picker is moved to its
1944 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001945 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
1946 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001947 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001948
John Spurlockf4f6b4c2012-08-25 12:08:03 -04001949 <!-- Allows applications to read dream settings and dream state.
1950 @hide -->
1951 <permission android:name="android.permission.READ_DREAM_STATE"
1952 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1953 android:protectionLevel="signature" />
1954
1955 <!-- Allows applications to write dream settings, and start or stop dreaming.
1956 @hide -->
1957 <permission android:name="android.permission.WRITE_DREAM_STATE"
1958 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1959 android:protectionLevel="signature" />
1960
Jeff Brownec7c78f2010-03-30 23:37:25 -07001961 <!-- Allow an application to read and write the cache partition.
1962 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08001963 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
1964 android:label="@string/permlab_cache_filesystem"
1965 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08001966 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08001967
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08001968 <!-- Must be required by default container service so that only
1969 the system can bind to it and use it to copy
1970 protected data to secure containers or files
1971 accessible to the system.
1972 @hide -->
1973 <permission android:name="android.permission.COPY_PROTECTED_DATA"
1974 android:label="@string/permlab_copyProtectedData"
1975 android:description="@string/permlab_copyProtectedData"
1976 android:protectionLevel="signature" />
1977
Jason parks8888c592011-01-20 22:46:41 -06001978 <!-- Internal permission protecting access to the encryption methods
1979 @hide
1980 -->
1981 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08001982 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06001983
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001984 <!-- Allows an application to read historical network usage for
1985 specific networks and applications. @hide -->
1986 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
1987 android:label="@string/permlab_readNetworkUsageHistory"
1988 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08001989 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001990
1991 <!-- Allows an application to manage network policies (such as warning and disable
1992 limits) and to define application-specific rules. @hide -->
1993 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
1994 android:label="@string/permlab_manageNetworkPolicy"
1995 android:description="@string/permdesc_manageNetworkPolicy"
1996 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06001997
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07001998 <!-- Allows an application to account its network traffic against other UIDs. Used
1999 by system services like download manager and media server. Not for use by
2000 third party apps. @hide -->
2001 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
2002 android:label="@string/permlab_modifyNetworkAccounting"
2003 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08002004 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002005
Tom Taylorb0381682011-08-11 14:27:25 -07002006 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002007 @hide Used internally.
2008 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002009 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002010 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002011 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002012
Dianne Hackborn8832c182012-09-17 17:20:24 -07002013 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002014 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002015 -->
2016 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2017 android:label="@string/permlab_packageVerificationAgent"
2018 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002019 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002020
2021 <!-- Must be required by package verifier receiver, to ensure that only the
2022 system can interact with it.
2023 @hide
2024 -->
2025 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2026 android:label="@string/permlab_bindPackageVerifier"
2027 android:description="@string/permdesc_bindPackageVerifier"
2028 android:protectionLevel="signature" />
2029
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002030 <!-- Allows applications to access serial ports via the SerialManager.
2031 @hide -->
2032 <permission android:name="android.permission.SERIAL_PORT"
2033 android:label="@string/permlab_serialPort"
2034 android:description="@string/permdesc_serialPort"
2035 android:protectionLevel="normal" />
2036
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002037 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2038 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2039 in particular ActivityManagerService#getContentProviderExternal(String) and
2040 ActivityManagerService#removeContentProviderExternal(String).
2041 @hide
2042 -->
2043 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2044 android:label="@string/permlab_accessContentProvidersExternally"
2045 android:description="@string/permdesc_accessContentProvidersExternally"
2046 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002047 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2048 OTA reboot *not* occur while the lock is held.
2049 @hide -->
2050 <permission android:name="android.permission.UPDATE_LOCK"
2051 android:label="@string/permlab_updateLock"
2052 android:description="@string/permdesc_updateLock"
2053 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002054
Christopher Tate4a627c72011-04-01 14:43:32 -07002055 <!-- The system process is explicitly the only one allowed to launch the
2056 confirmation UI for full backup/restore -->
2057 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2058
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002059 <application android:process="system"
2060 android:persistent="true"
2061 android:hasCode="false"
2062 android:label="@string/android_system_label"
2063 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002064 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002065 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002066 android:icon="@drawable/ic_launcher_android"
2067 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002069 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002070 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002071 android:excludeFromRecents="true"
2072 android:multiprocess="true">
2073 <intent-filter>
2074 <action android:name="android.intent.action.CHOOSER" />
2075 <category android:name="android.intent.category.DEFAULT" />
2076 </intent-filter>
2077 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002078 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002079 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002080 android:label="@string/heavy_weight_switcher_title"
2081 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002082 android:excludeFromRecents="true"
2083 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002084 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002085 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002086 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2087 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002088 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002089 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2090 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002091 android:excludeFromRecents="true"
2092 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002093 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094
Fred Quintana33269202009-04-20 16:05:10 -07002095 <activity android:name="android.accounts.ChooseAccountActivity"
2096 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002097 android:exported="true"
2098 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002099 android:label="@string/choose_account_label"
2100 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002101 </activity>
2102
Fred Quintana1121bb52011-09-14 23:19:35 -07002103 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2104 android:excludeFromRecents="true"
2105 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002106 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002107 android:label="@string/choose_account_label"
2108 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002109 </activity>
2110
2111 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2112 android:excludeFromRecents="true"
Jatin Lodhia856b01e2012-09-28 10:53:37 -07002113 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002114 android:label="@string/choose_account_label"
2115 android:process=":ui">
2116 </activity>
2117
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002118 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2119 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002120 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002121 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2122 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002123 </activity>
2124
Fred Quintanab19e62a2010-12-16 13:54:43 -08002125 <activity android:name="android.content.SyncActivityTooManyDeletes"
2126 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002127 android:label="@string/sync_too_many_deletes"
2128 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002129 </activity>
2130
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002131 <activity android:name="com.android.server.ShutdownActivity"
2132 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002133 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002134 <intent-filter>
2135 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2136 <category android:name="android.intent.category.DEFAULT" />
2137 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002138 <intent-filter>
2139 <action android:name="android.intent.action.REBOOT" />
2140 <category android:name="android.intent.category.DEFAULT" />
2141 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002142 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002143
Danke Xie22d1f9f2009-08-18 18:28:45 -04002144 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002145 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002146 android:excludeFromRecents="true"
2147 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002148 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002149
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002150 <receiver android:name="com.android.server.BootReceiver"
2151 android:primaryUserOnly="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002152 <intent-filter>
2153 <action android:name="android.intent.action.BOOT_COMPLETED" />
2154 </intent-filter>
2155 </receiver>
2156
Geremy Condrab6310842012-08-23 22:00:15 -07002157 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2158 <intent-filter>
2159 <action android:name="android.intent.action.UPDATE_PINS" />
2160 </intent-filter>
2161 </receiver>
2162
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002163 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2164 <intent-filter>
2165 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2166 </intent-filter>
2167 </receiver>
2168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002169 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002170 android:permission="android.permission.MASTER_CLEAR"
2171 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002172 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002173 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2174 <action android:name="android.intent.action.MASTER_CLEAR" />
2175
2176 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002177 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002178 <category android:name="android.intent.category.MASTER_CLEAR" />
2179 </intent-filter>
2180 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002181
2182 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2183 android:permission="android.permission.MASTER_CLEAR"
2184 android:exported="true" />
2185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002186 </application>
2187
2188</manifest>