blob: bedb33c88911417fbf48221a959cf31ac65a27c5 [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" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800132 <protected-broadcast android:name="android.net.conn.CAPTIVE_PORTAL_TEST_COMPLETED" />
Jeff Sharkey961e3042011-08-29 16:02:57 -0700133
Nick Pellyf36c6db2010-10-14 19:16:35 -0700134 <protected-broadcast android:name="android.nfc.action.LLCP_LINK_STATE_CHANGED" />
Nick Pelly367f41f2011-03-08 11:43:30 -0800135 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_ON_DETECTED" />
136 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED" />
137 <protected-broadcast android:name="com.android.nfc_extras.action.AID_SELECTED" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700138
Nick Pellyf36c6db2010-10-14 19:16:35 -0700139 <protected-broadcast android:name="android.nfc.action.TRANSACTION_DETECTED" />
Robert Greenwalt03595d02010-11-02 14:08:23 -0700140 <protected-broadcast android:name="android.intent.action.CLEAR_DNS_CACHE" />
Robert Greenwalt434203a2010-10-11 16:00:27 -0700141 <protected-broadcast android:name="android.intent.action.PROXY_CHANGE" />
Mike Lockwood24236072010-06-23 17:36:36 -0400142
Christopher Tate8662cab52012-02-23 14:59:36 -0800143 <protected-broadcast android:name="android.os.UpdateLock.UPDATE_LOCK_CHANGED" />
Nick Pellya64e2ad42011-03-14 10:28:11 -0700144
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400145 <protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
146 <protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800147 <protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
148
149 <protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
150 <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
151 <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" />
152 <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" />
153 <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" />
154 <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" />
155 <protected-broadcast android:name="android.net.wifi.STATE_CHANGE" />
156 <protected-broadcast android:name="android.net.wifi.LINK_CONFIGURATION_CHANGED" />
157 <protected-broadcast android:name="android.net.wifi.CONFIGURED_NETWORKS_CHANGE" />
158 <protected-broadcast android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
159 <protected-broadcast android:name="android.net.wifi.supplicant.STATE_CHANGE" />
160 <protected-broadcast android:name="android.net.wifi.p2p.STATE_CHANGED" />
161 <protected-broadcast android:name="android.net.wifi.p2p.DISCOVERY_STATE_CHANGE" />
162 <protected-broadcast android:name="android.net.wifi.p2p.THIS_DEVICE_CHANGED" />
163 <protected-broadcast android:name="android.net.wifi.p2p.PEERS_CHANGED" />
164 <protected-broadcast android:name="android.net.wifi.p2p.CONNECTION_STATE_CHANGE" />
165 <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" />
166 <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" />
167 <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" />
Nick Kralevicha4405ba2012-12-06 15:22:11 -0800168 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
169 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" />
170 <protected-broadcast android:name="android.intent.action.AIRPLANE_MODE" />
171 <protected-broadcast android:name="android.intent.action.ADVANCED_SETTINGS" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400172
Svetoslavb3038ec2013-02-13 14:39:30 -0800173 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_START" />
174 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_END" />
175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 <!-- ====================================== -->
177 <!-- Permissions for things that cost money -->
178 <!-- ====================================== -->
179 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700180
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 <!-- Used for permissions that can be used to make the user spend money
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700182 without their direct involvement. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 <permission-group android:name="android.permission-group.COST_MONEY"
184 android:label="@string/permgrouplab_costMoney"
185 android:description="@string/permgroupdesc_costMoney" />
186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 <!-- ================================== -->
188 <!-- Permissions for accessing messages -->
189 <!-- ================================== -->
190 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 <!-- Used for permissions that allow an application to send messages
193 on behalf of the user or intercept messages being received by the
194 user. This is primarily intended for SMS/MMS messaging, such as
195 receiving or reading an MMS. -->
196 <permission-group android:name="android.permission-group.MESSAGES"
197 android:label="@string/permgrouplab_messages"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700198 android:icon="@drawable/perm_group_messages"
199 android:description="@string/permgroupdesc_messages"
200 android:permissionGroupFlags="personalInfo"
201 android:priority="360"/>
202
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700203 <!-- Allows an application to send SMS messages. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700204 <permission android:name="android.permission.SEND_SMS"
205 android:permissionGroup="android.permission-group.MESSAGES"
206 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700207 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700208 android:label="@string/permlab_sendSms"
209 android:description="@string/permdesc_sendSms" />
210
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700211 <!-- Allows an application (Phone) to send a request to other applications
212 to handle the respond-via-message action during incoming calls. -->
213 <permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700214 android:permissionGroup="android.permission-group.MESSAGES"
215 android:protectionLevel="signature|system"
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700216 android:label="@string/permlab_sendRespondViaMessageRequest"
217 android:description="@string/permdesc_sendRespondViaMessageRequest" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218
219 <!-- Allows an application to monitor incoming SMS messages, to record
220 or perform processing on them. -->
221 <permission android:name="android.permission.RECEIVE_SMS"
222 android:permissionGroup="android.permission-group.MESSAGES"
223 android:protectionLevel="dangerous"
224 android:label="@string/permlab_receiveSms"
225 android:description="@string/permdesc_receiveSms" />
226
227 <!-- Allows an application to monitor incoming MMS messages, to record
228 or perform processing on them. -->
229 <permission android:name="android.permission.RECEIVE_MMS"
230 android:permissionGroup="android.permission-group.MESSAGES"
231 android:protectionLevel="dangerous"
232 android:label="@string/permlab_receiveMms"
233 android:description="@string/permdesc_receiveMms" />
234
Jake Hambyab79ee42011-04-26 16:26:46 -0700235 <!-- Allows an application to receive emergency cell broadcast messages,
236 to record or display them to the user. Reserved for system apps.
237 @hide Pending API council approval -->
238 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
239 android:permissionGroup="android.permission-group.MESSAGES"
Dianne Hackborne639da72012-02-21 15:11:13 -0800240 android:protectionLevel="signature|system"
Jake Hambyab79ee42011-04-26 16:26:46 -0700241 android:label="@string/permlab_receiveEmergencyBroadcast"
242 android:description="@string/permdesc_receiveEmergencyBroadcast" />
243
Jake Hambyc3296ff2012-04-18 12:32:18 -0700244 <!-- Allows an application to read previously received cell broadcast
245 messages and to register a content observer to get notifications when
246 a cell broadcast has been received and added to the database. For
247 emergency alerts, the database is updated immediately after the
248 alert dialog and notification sound/vibration/speech are presented.
249 The "read" column is then updated after the user dismisses the alert.
250 This enables supplementary emergency assistance apps to start loading
251 additional emergency information (if Internet access is available)
252 when the alert is first received, and to delay presenting the info
253 to the user until after the initial alert dialog is dismissed.
254 @hide Pending API council approval -->
255 <permission android:name="android.permission.READ_CELL_BROADCASTS"
256 android:permissionGroup="android.permission-group.MESSAGES"
257 android:protectionLevel="dangerous"
258 android:label="@string/permlab_readCellBroadcasts"
259 android:description="@string/permdesc_readCellBroadcasts" />
260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 <!-- Allows an application to read SMS messages. -->
262 <permission android:name="android.permission.READ_SMS"
263 android:permissionGroup="android.permission-group.MESSAGES"
264 android:protectionLevel="dangerous"
265 android:label="@string/permlab_readSms"
266 android:description="@string/permdesc_readSms" />
267
268 <!-- Allows an application to write SMS messages. -->
269 <permission android:name="android.permission.WRITE_SMS"
270 android:permissionGroup="android.permission-group.MESSAGES"
271 android:protectionLevel="dangerous"
272 android:label="@string/permlab_writeSms"
273 android:description="@string/permdesc_writeSms" />
274
275 <!-- Allows an application to monitor incoming WAP push messages. -->
276 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
277 android:permissionGroup="android.permission-group.MESSAGES"
278 android:protectionLevel="dangerous"
279 android:label="@string/permlab_receiveWapPush"
280 android:description="@string/permdesc_receiveWapPush" />
281
282 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700283 <!-- Permissions for accessing social info (contacts and social) -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 <!-- =============================================================== -->
285 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700286
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700287 <!-- Used for permissions that provide access to the user's social connections,
288 such as contacts, call logs, social stream, etc. This includes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 both reading and writing of this data (which should generally be
290 expressed as two distinct permissions). -->
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700291
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700292 <permission-group android:name="android.permission-group.SOCIAL_INFO"
293 android:label="@string/permgrouplab_socialInfo"
294 android:icon="@drawable/perm_group_social_info"
295 android:description="@string/permgroupdesc_socialInfo"
296 android:permissionGroupFlags="personalInfo"
297 android:priority="320" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298
299 <!-- Allows an application to read the user's contacts data. -->
300 <permission android:name="android.permission.READ_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700301 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 android:protectionLevel="dangerous"
303 android:label="@string/permlab_readContacts"
304 android:description="@string/permdesc_readContacts" />
305
306 <!-- Allows an application to write (but not read) the user's
307 contacts data. -->
308 <permission android:name="android.permission.WRITE_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700309 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310 android:protectionLevel="dangerous"
311 android:label="@string/permlab_writeContacts"
312 android:description="@string/permdesc_writeContacts" />
313
Subir Jhanb603af612012-08-06 17:19:22 -0700314 <!-- Allows an application to execute contacts directory search.
315 This should only be used by ContactsProvider. -->
316 <!-- @hide -->
317 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
318 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Subir Jhanb0224cca2012-08-16 17:04:54 -0700319 android:protectionLevel="signature|system" />
Subir Jhanb603af612012-08-06 17:19:22 -0700320
Scott Main2681faa2012-11-01 12:18:31 -0700321 <!-- Allows an application to read the user's call log.
322 <p class="note"><strong>Note:</strong> If your app uses the
323 {@link #READ_CONTACTS} permission and <em>both</em> your <a
324 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
325 minSdkVersion}</a> and <a
326 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
327 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
328 grants your app this permission. If you don't need this permission, be sure your <a
329 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
330 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700331 <permission android:name="android.permission.READ_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700332 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700333 android:protectionLevel="dangerous"
334 android:label="@string/permlab_readCallLog"
335 android:description="@string/permdesc_readCallLog" />
336
337 <!-- Allows an application to write (but not read) the user's
Scott Main2681faa2012-11-01 12:18:31 -0700338 contacts data.
339 <p class="note"><strong>Note:</strong> If your app uses the
340 {@link #WRITE_CONTACTS} permission and <em>both</em> your <a
341 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
342 minSdkVersion}</a> and <a
343 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
344 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
345 grants your app this permission. If you don't need this permission, be sure your <a
346 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
347 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700348 <permission android:name="android.permission.WRITE_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700349 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700350 android:protectionLevel="dangerous"
351 android:label="@string/permlab_writeCallLog"
352 android:description="@string/permdesc_writeCallLog" />
353
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700354 <!-- Allows an application to read from the user's social stream. -->
355 <permission android:name="android.permission.READ_SOCIAL_STREAM"
356 android:permissionGroup="android.permission-group.SOCIAL_INFO"
357 android:protectionLevel="dangerous"
358 android:label="@string/permlab_readSocialStream"
359 android:description="@string/permdesc_readSocialStream" />
360
361 <!-- Allows an application to write (but not read) the user's
362 social stream data. -->
363 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
364 android:permissionGroup="android.permission-group.SOCIAL_INFO"
365 android:protectionLevel="dangerous"
366 android:label="@string/permlab_writeSocialStream"
367 android:description="@string/permdesc_writeSocialStream" />
368
369 <!-- =============================================================== -->
370 <!-- Permissions for accessing information about the device owner -->
371 <!-- =============================================================== -->
372 <eat-comment />
373
374 <!-- Used for permissions that provide access to information about the device
375 user such as profile information. This includes both reading and
376 writing of this data (which should generally be expressed as two
377 distinct permissions). -->
378 <permission-group android:name="android.permission-group.PERSONAL_INFO"
379 android:label="@string/permgrouplab_personalInfo"
380 android:icon="@drawable/perm_group_personal_info"
381 android:description="@string/permgroupdesc_personalInfo"
382 android:permissionGroupFlags="personalInfo"
383 android:priority="310" />
384
Dave Santoro43251332011-05-11 11:39:54 -0700385 <!-- Allows an application to read the user's personal profile data. -->
386 <permission android:name="android.permission.READ_PROFILE"
387 android:permissionGroup="android.permission-group.PERSONAL_INFO"
388 android:protectionLevel="dangerous"
389 android:label="@string/permlab_readProfile"
390 android:description="@string/permdesc_readProfile" />
391
392 <!-- Allows an application to write (but not read) the user's
393 personal profile data. -->
394 <permission android:name="android.permission.WRITE_PROFILE"
395 android:permissionGroup="android.permission-group.PERSONAL_INFO"
396 android:protectionLevel="dangerous"
397 android:label="@string/permlab_writeProfile"
398 android:description="@string/permdesc_writeProfile" />
399
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700400 <!-- =============================================================== -->
401 <!-- Permissions for accessing the device calendar -->
402 <!-- =============================================================== -->
403 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -0700404
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700405 <!-- Used for permissions that provide access to the device
406 calendar to create / view events.-->
407 <permission-group android:name="android.permission-group.CALENDAR"
408 android:label="@string/permgrouplab_calendar"
409 android:icon="@drawable/perm_group_calendar"
410 android:description="@string/permgroupdesc_calendar"
411 android:permissionGroupFlags="personalInfo"
412 android:priority="290" />
Dave Santoro0b61f592011-10-03 18:25:26 -0700413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 <!-- Allows an application to read the user's calendar data. -->
415 <permission android:name="android.permission.READ_CALENDAR"
416 android:permissionGroup="android.permission-group.PERSONAL_INFO"
417 android:protectionLevel="dangerous"
418 android:label="@string/permlab_readCalendar"
419 android:description="@string/permdesc_readCalendar" />
420
421 <!-- Allows an application to write (but not read) the user's
422 calendar data. -->
423 <permission android:name="android.permission.WRITE_CALENDAR"
424 android:permissionGroup="android.permission-group.PERSONAL_INFO"
425 android:protectionLevel="dangerous"
426 android:label="@string/permlab_writeCalendar"
427 android:description="@string/permdesc_writeCalendar" />
428
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700429 <!-- =============================================================== -->
430 <!-- Permissions for accessing the user dictionary-->
431 <!-- =============================================================== -->
432 <eat-comment />
433
434 <!-- Used for permissions that provide access to the user
435 calendar to create / view events.-->
436 <permission-group android:name="android.permission-group.USER_DICTIONARY"
437 android:label="@string/permgrouplab_dictionary"
438 android:icon="@drawable/perm_group_user_dictionary"
439 android:description="@string/permgroupdesc_dictionary"
440 android:permissionGroupFlags="personalInfo"
441 android:priority="170" />
442
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700444 really only be required by an IME, or a dictionary editor like
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700445 the Settings app. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 <permission android:name="android.permission.READ_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700447 android:permissionGroup="android.permission-group.USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 android:protectionLevel="dangerous"
449 android:label="@string/permlab_readDictionary"
450 android:description="@string/permdesc_readDictionary" />
451
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700452 <!-- Used for permissions that provide access to the user
453 calendar to create / view events.-->
454 <permission-group android:name="android.permission-group.WRITE_USER_DICTIONARY"
455 android:label="@string/permgrouplab_writeDictionary"
456 android:icon="@drawable/perm_group_user_dictionary_write"
457 android:description="@string/permgroupdesc_writeDictionary"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700458 android:priority="160" />
459
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700460 <!-- Allows an application to write to the user dictionary. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700462 android:permissionGroup="android.permission-group.WRITE_USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 android:protectionLevel="normal"
464 android:label="@string/permlab_writeDictionary"
465 android:description="@string/permdesc_writeDictionary" />
466
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700467 <!-- =============================================================== -->
468 <!-- Permissions for accessing the user bookmarks -->
469 <!-- =============================================================== -->
470 <eat-comment />
471
472 <!-- Used for permissions that provide access to the user
473 bookmarks and browser history.-->
474 <permission-group android:name="android.permission-group.BOOKMARKS"
475 android:label="@string/permgrouplab_bookmarks"
476 android:icon="@drawable/perm_group_bookmarks"
477 android:description="@string/permgroupdesc_bookmarks"
478 android:permissionGroupFlags="personalInfo"
479 android:priority="300" />
480
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400481 <!-- Allows an application to read (but not write) the user's
482 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400483 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700484 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400485 android:label="@string/permlab_readHistoryBookmarks"
486 android:description="@string/permdesc_readHistoryBookmarks"
487 android:protectionLevel="dangerous" />
488
489 <!-- Allows an application to write (but not read) the user's
490 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400491 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700492 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400493 android:label="@string/permlab_writeHistoryBookmarks"
494 android:description="@string/permdesc_writeHistoryBookmarks"
495 android:protectionLevel="dangerous" />
496
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700497 <!-- =============================================================== -->
498 <!-- Permissions for setting the device alarm -->
499 <!-- =============================================================== -->
500 <eat-comment />
501
502 <!-- Used for permissions that provide access to the user voicemail box. -->
503 <permission-group android:name="android.permission-group.DEVICE_ALARMS"
504 android:label="@string/permgrouplab_deviceAlarms"
505 android:icon="@drawable/perm_group_device_alarms"
506 android:description="@string/permgroupdesc_deviceAlarms"
507 android:permissionGroupFlags="personalInfo"
508 android:priority="210" />
509
Patrick Scotta73c4b02010-09-22 08:16:53 -0400510 <!-- Allows an application to broadcast an Intent to set an alarm for the
511 user. -->
512 <permission android:name="com.android.alarm.permission.SET_ALARM"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700513 android:permissionGroup="android.permission-group.DEVICE_ALARMS"
Patrick Scotta73c4b02010-09-22 08:16:53 -0400514 android:label="@string/permlab_setAlarm"
515 android:description="@string/permdesc_setAlarm"
516 android:protectionLevel="normal" />
517
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700518 <!-- =============================================================== -->
519 <!-- Permissions for accessing the user voicemail -->
520 <!-- =============================================================== -->
521 <eat-comment />
522
523 <!-- Used for permissions that provide access to the user voicemail box. -->
524 <permission-group android:name="android.permission-group.VOICEMAIL"
525 android:label="@string/permgrouplab_voicemail"
526 android:icon="@drawable/perm_group_voicemail"
527 android:description="@string/permgroupdesc_voicemail"
528 android:permissionGroupFlags="personalInfo"
529 android:priority="280" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700530
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100531 <!-- Allows an application to add voicemails into the system. -->
532 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700533 android:permissionGroup="android.permission-group.VOICEMAIL"
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100534 android:protectionLevel="dangerous"
535 android:label="@string/permlab_addVoicemail"
536 android:description="@string/permdesc_addVoicemail" />
537
Svetoslav38228962013-01-29 01:04:35 -0800538 <!-- =============================================== -->
539 <!-- Permissions for enabling accessibility features -->
540 <!-- =============================================== -->
541
542 <!-- Used for permissions that allow requesting certain accessibility features. -->
543 <permission-group android:name="android.permission-group.ACCESSIBILITY_FEATURES"
544 android:label="@string/permgrouplab_accessibilityFeatures"
545 android:icon="@drawable/perm_group_accessibility_features"
546 android:description="@string/permgroupdesc_accessibilityFeatures"
547 android:priority="380" />
548
549 <!-- Allows an accessibility service to request touch exploration mode. -->
550 <permission android:name="android.permission.CAN_REQUEST_TOUCH_EXPLORATION_MODE"
551 android:permissionGroup="android.permission-group.ACCESSIBILITY_FEATURES"
552 android:label="@string/permlab_canRequestTouchExplorationMode"
553 android:description="@string/permdesc_canRequestTouchExplorationMode"
554 android:protectionLevel="dangerous" />
555
556 <!-- Allows an accessibility service to request enhanced web accessibility. -->
557 <permission android:name="android.permission.CAN_REQUEST_ENHANCED_WEB_ACCESSIBILITY"
558 android:permissionGroup="android.permission-group.ACCESSIBILITY_FEATURES"
559 android:label="@string/permlab_canRequestEnahncedWebAccessibility"
560 android:description="@string/permdesc_canRequestEnahncedWebAccessibility"
561 android:protectionLevel="dangerous" />
562
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 <!-- ======================================= -->
564 <!-- Permissions for accessing location info -->
565 <!-- ======================================= -->
566 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700567
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 <!-- Used for permissions that allow access to the user's current
569 location. -->
570 <permission-group android:name="android.permission-group.LOCATION"
571 android:label="@string/permgrouplab_location"
Dianne Hackborn99222d22012-05-06 16:30:15 -0700572 android:icon="@drawable/perm_group_location"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700573 android:description="@string/permgroupdesc_location"
574 android:permissionGroupFlags="personalInfo"
575 android:priority="330" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576
Scott Main277b3522012-11-01 10:55:02 -0700577 <!-- Allows an app to access precise location from location sources such
578 as GPS, cell towers, and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
580 android:permissionGroup="android.permission-group.LOCATION"
581 android:protectionLevel="dangerous"
582 android:label="@string/permlab_accessFineLocation"
583 android:description="@string/permdesc_accessFineLocation" />
584
Scott Main277b3522012-11-01 10:55:02 -0700585 <!-- Allows an app to access approximate location derived from network location
586 sources such as cell towers and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
588 android:permissionGroup="android.permission-group.LOCATION"
589 android:protectionLevel="dangerous"
590 android:label="@string/permlab_accessCoarseLocation"
591 android:description="@string/permdesc_accessCoarseLocation" />
592
593 <!-- Allows an application to create mock location providers for testing -->
594 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700595 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700596 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 android:label="@string/permlab_accessMockLocation"
598 android:description="@string/permdesc_accessMockLocation" />
599
600 <!-- Allows an application to access extra location provider commands -->
601 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700602 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700603 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 android:label="@string/permlab_accessLocationExtraCommands"
605 android:description="@string/permdesc_accessLocationExtraCommands" />
606
Mike Lockwood275555c2009-05-01 11:30:34 -0400607 <!-- Allows an application to install a location provider into the Location Manager -->
608 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborne639da72012-02-21 15:11:13 -0800609 android:protectionLevel="signature|system"
Mike Lockwood275555c2009-05-01 11:30:34 -0400610 android:label="@string/permlab_installLocationProvider"
611 android:description="@string/permdesc_installLocationProvider" />
612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 <!-- ======================================= -->
614 <!-- Permissions for accessing networks -->
615 <!-- ======================================= -->
616 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700617
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 <!-- Used for permissions that provide access to networking services. The
619 main permission here is internet access, but this is also an
620 appropriate group for accessing or modifying any network configuration
621 or other related network operations. -->
622 <permission-group android:name="android.permission-group.NETWORK"
623 android:label="@string/permgrouplab_network"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700624 android:icon="@drawable/perm_group_network"
625 android:description="@string/permgroupdesc_network"
626 android:priority="270" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627
628 <!-- Allows applications to open network sockets. -->
629 <permission android:name="android.permission.INTERNET"
630 android:permissionGroup="android.permission-group.NETWORK"
631 android:protectionLevel="dangerous"
632 android:description="@string/permdesc_createNetworkSockets"
633 android:label="@string/permlab_createNetworkSockets" />
634
635 <!-- Allows applications to access information about networks -->
636 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
637 android:permissionGroup="android.permission-group.NETWORK"
638 android:protectionLevel="normal"
639 android:description="@string/permdesc_accessNetworkState"
640 android:label="@string/permlab_accessNetworkState" />
641
642 <!-- Allows applications to access information about Wi-Fi networks -->
643 <permission android:name="android.permission.ACCESS_WIFI_STATE"
644 android:permissionGroup="android.permission-group.NETWORK"
645 android:protectionLevel="normal"
646 android:description="@string/permdesc_accessWifiState"
647 android:label="@string/permlab_accessWifiState" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800648
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700649 <!-- Allows applications to change Wi-Fi connectivity state -->
650 <permission android:name="android.permission.CHANGE_WIFI_STATE"
651 android:permissionGroup="android.permission-group.NETWORK"
652 android:protectionLevel="dangerous"
653 android:description="@string/permdesc_changeWifiState"
654 android:label="@string/permlab_changeWifiState" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700655
Robert Greenwalt8588e472011-11-08 10:12:25 -0800656 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +0900657 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
658 android:permissionGroup="android.permission-group.NETWORK"
659 android:protectionLevel="normal"
660 android:description="@string/permdesc_accessWimaxState"
661 android:label="@string/permlab_accessWimaxState" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700662
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700663 <!-- @hide -->
664 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700665 android:permissionGroup="android.permission-group.NETWORK"
666 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700667 android:description="@string/permdesc_changeWimaxState"
668 android:label="@string/permlab_changeWimaxState" />
669
670 <!-- ======================================= -->
671 <!-- Permissions for short range, peripheral networks -->
672 <!-- ======================================= -->
673 <eat-comment />
674
675 <!-- Used for permissions that provide access to other devices through Bluetooth.-->
676 <permission-group android:name="android.permission-group.BLUETOOTH_NETWORK"
677 android:label="@string/permgrouplab_bluetoothNetwork"
678 android:icon="@drawable/perm_group_bluetooth"
679 android:description="@string/permgroupdesc_bluetoothNetwork"
680 android:priority="260" />
681
682 <!-- Allows applications to connect to paired bluetooth devices -->
683 <permission android:name="android.permission.BLUETOOTH"
684 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
685 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800686 android:description="@string/permdesc_bluetooth"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700687 android:label="@string/permlab_bluetooth" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800688
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700689 <!-- Allows applications to discover and pair bluetooth devices -->
690 <permission android:name="android.permission.BLUETOOTH_ADMIN"
691 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
692 android:protectionLevel="dangerous"
693 android:description="@string/permdesc_bluetoothAdmin"
694 android:label="@string/permlab_bluetoothAdmin" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800695
Matthew Xiefca9d632012-10-04 12:25:28 -0700696 <!-- Allows bluetooth stack to access files
697 @hide This should only be used by Bluetooth apk.
698 -->
699 <permission android:name="android.permission.BLUETOOTH_STACK"
700 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
701 android:protectionLevel="signature" />
702
Nick Pelly1df862a2011-02-15 13:34:38 -0800703 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700704 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700705 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700706 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700707 android:description="@string/permdesc_nfc"
708 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700709
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700710 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700711 @hide -->
712 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
713 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800714 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700715
Haoyu Baidb3c8672012-06-20 14:29:57 -0700716 <!-- @hide -->
717 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
718 android:permissionGroup="android.permission-group.NETWORK"
719 android:protectionLevel="signature|system" />
720
Doug Zongkerb616f0c2013-01-29 09:05:21 -0800721 <!-- Allows access to the loop radio (Android@Home mesh network) device.
722 @hide -->
723 <permission android:name="android.permission.LOOP_RADIO"
724 android:permissionGroup="android.permission-group.NETWORK"
725 android:protectionLevel="signature|system" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800726
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 <!-- ================================== -->
728 <!-- Permissions for accessing accounts -->
729 <!-- ================================== -->
730 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700731
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700732 <!-- Permissions for direct access to the accounts managed
733 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 <permission-group android:name="android.permission-group.ACCOUNTS"
735 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700736 android:icon="@drawable/perm_group_accounts"
737 android:description="@string/permgroupdesc_accounts"
738 android:permissionGroupFlags="personalInfo"
739 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800740
741 <!-- Allows access to the list of accounts in the Accounts Service -->
742 <permission android:name="android.permission.GET_ACCOUNTS"
743 android:permissionGroup="android.permission-group.ACCOUNTS"
744 android:protectionLevel="normal"
745 android:description="@string/permdesc_getAccounts"
746 android:label="@string/permlab_getAccounts" />
747
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700748 <!-- Allows an application to act as an AccountAuthenticator for
749 the AccountManager -->
750 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
751 android:permissionGroup="android.permission-group.ACCOUNTS"
752 android:protectionLevel="dangerous"
753 android:label="@string/permlab_authenticateAccounts"
754 android:description="@string/permdesc_authenticateAccounts" />
755
756 <!-- Allows an application to request authtokens from the AccountManager -->
757 <permission android:name="android.permission.USE_CREDENTIALS"
758 android:permissionGroup="android.permission-group.ACCOUNTS"
759 android:protectionLevel="dangerous"
760 android:label="@string/permlab_useCredentials"
761 android:description="@string/permdesc_useCredentials" />
762
763 <!-- Allows an application to manage the list of accounts in the AccountManager -->
764 <permission android:name="android.permission.MANAGE_ACCOUNTS"
765 android:permissionGroup="android.permission-group.ACCOUNTS"
766 android:protectionLevel="dangerous"
767 android:label="@string/permlab_manageAccounts"
768 android:description="@string/permdesc_manageAccounts" />
769
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700770 <!-- Allows applications to call into AccountAuthenticators. Only
771 the system can get this permission. -->
772 <permission android:name="android.permission.ACCOUNT_MANAGER"
773 android:permissionGroup="android.permission-group.ACCOUNTS"
774 android:protectionLevel="signature"
775 android:description="@string/permdesc_accountManagerService"
776 android:label="@string/permlab_accountManagerService" />
777
778 <!-- ================================== -->
779 <!-- Permissions for accessing hardware that may effect battery life-->
780 <!-- ================================== -->
781 <eat-comment />
782
783 <!-- Used for permissions that provide direct access to the hardware on
784 the device that has an effect on battery life. This includes vibrator,
785 flashlight, etc. -->
786
787 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
788 android:label="@string/permgrouplab_affectsBattery"
789 android:icon="@drawable/perm_group_affects_battery"
790 android:description="@string/permgroupdesc_affectsBattery"
791 android:priority="180" />
792
793 <!-- Allows applications to enter Wi-Fi Multicast mode -->
794 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
795 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
796 android:protectionLevel="dangerous"
797 android:description="@string/permdesc_changeWifiMulticastState"
798 android:label="@string/permlab_changeWifiMulticastState" />
799
800 <!-- Allows access to the vibrator -->
801 <permission android:name="android.permission.VIBRATE"
802 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
803 android:protectionLevel="normal"
804 android:label="@string/permlab_vibrate"
805 android:description="@string/permdesc_vibrate" />
806
807 <!-- Allows access to the flashlight -->
808 <permission android:name="android.permission.FLASHLIGHT"
809 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
810 android:protectionLevel="normal"
811 android:label="@string/permlab_flashlight"
812 android:description="@string/permdesc_flashlight" />
813
814 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
815 from dimming -->
816 <permission android:name="android.permission.WAKE_LOCK"
817 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
818 android:protectionLevel="normal"
819 android:label="@string/permlab_wakeLock"
820 android:description="@string/permdesc_wakeLock" />
821
822 <!-- ==================================================== -->
823 <!-- Permissions related to changing audio settings -->
824 <!-- ==================================================== -->
825
826 <!-- Used for permissions that provide direct access to speaker settings
827 the device. -->
828 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
829 android:label="@string/permgrouplab_audioSettings"
830 android:icon="@drawable/perm_group_audio_settings"
831 android:description="@string/permgroupdesc_audioSettings"
832 android:priority="130" />
833
834 <!-- Allows an application to modify global audio settings -->
835 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
836 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
837 android:protectionLevel="normal"
838 android:label="@string/permlab_modifyAudioSettings"
839 android:description="@string/permdesc_modifyAudioSettings" />
840
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 <!-- ================================== -->
842 <!-- Permissions for accessing hardware -->
843 <!-- ================================== -->
844 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700845
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 <!-- Used for permissions that provide direct access to the hardware on
847 the device. This includes audio, the camera, vibrator, etc. -->
848 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
849 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700850 android:description="@string/permgroupdesc_hardwareControls"
851 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852
Mike Lockwood02eb8742011-02-27 09:10:37 -0800853 <!-- Allows an application to manage preferences and permissions for USB devices
854 @hide -->
855 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400856 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800857 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800858 android:label="@string/permlab_manageUsb"
859 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400860
Mike Lockwood10bc1112011-01-10 08:24:08 -0500861 <!-- Allows an application to access the MTP USB kernel driver.
862 For use only by the device side MTP implementation.
863 @hide -->
864 <permission android:name="android.permission.ACCESS_MTP"
865 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800866 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500867 android:label="@string/permlab_accessMtp"
868 android:description="@string/permdesc_accessMtp" />
869
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
871 <permission android:name="android.permission.HARDWARE_TEST"
872 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
873 android:protectionLevel="signature"
874 android:label="@string/permlab_hardware_test"
875 android:description="@string/permdesc_hardware_test" />
876
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500877 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
878 @hide -->
879 <permission android:name="android.permission.NET_ADMIN"
880 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
881 android:protectionLevel="signature" />
882
Jeff Sharkey098d5802012-04-26 17:30:34 -0700883 <!-- Allows registration for remote audio playback. @hide -->
884 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
885 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
886 android:protectionLevel="signature" />
887
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700889 <!-- Permissions associated with audio capture -->
890 <!-- =========================================== -->
891 <eat-comment />
892
893 <!-- Used for permissions that are associated with accessing
894 microphone audio from the device. Note that phone calls also capture audio
895 but are in a separate (more visible) permission group. -->
896 <permission-group android:name="android.permission-group.MICROPHONE"
897 android:label="@string/permgrouplab_microphone"
898 android:icon="@drawable/perm_group_microphone"
899 android:description="@string/permgroupdesc_microphone"
900 android:permissionGroupFlags="personalInfo"
901 android:priority="340" />
902
903 <!-- Allows an application to record audio -->
904 <permission android:name="android.permission.RECORD_AUDIO"
905 android:permissionGroup="android.permission-group.MICROPHONE"
906 android:protectionLevel="dangerous"
907 android:label="@string/permlab_recordAudio" />
908
909
910 <!-- =========================================== -->
911 <!-- Permissions associated with camera and image capture -->
912 <!-- =========================================== -->
913 <eat-comment />
914
915 <!-- Used for permissions that are associated with accessing
916 camera or capturing images/video from the device. -->
917 <permission-group android:name="android.permission-group.CAMERA"
918 android:label="@string/permgrouplab_camera"
919 android:icon="@drawable/perm_group_camera"
920 android:description="@string/permgroupdesc_camera"
921 android:permissionGroupFlags="personalInfo"
922 android:priority="350" />
923
924 <!-- Required to be able to access the camera device.
925 <p>This will automatically enforce the <a
926 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
927 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
928 If you do not require all camera features or can properly operate if a camera
929 is not available, then you must modify your manifest as appropriate in order to
930 install on devices that don't support all camera features.</p> -->
931 <permission android:name="android.permission.CAMERA"
932 android:permissionGroup="android.permission-group.CAMERA"
933 android:protectionLevel="dangerous"
934 android:label="@string/permlab_camera"
935 android:description="@string/permdesc_camera" />
936
937 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938 <!-- Permissions associated with telephony state -->
939 <!-- =========================================== -->
940 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700941
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700943 telephony state: placing calls, intercepting outgoing calls, reading
944 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800945 <permission-group android:name="android.permission-group.PHONE_CALLS"
946 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700947 android:icon="@drawable/perm_group_phone_calls"
948 android:description="@string/permgroupdesc_phoneCalls"
949 android:permissionGroupFlags="personalInfo"
950 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800951
952 <!-- Allows an application to monitor, modify, or abort outgoing
953 calls. -->
954 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
955 android:permissionGroup="android.permission-group.PHONE_CALLS"
956 android:protectionLevel="dangerous"
957 android:label="@string/permlab_processOutgoingCalls"
958 android:description="@string/permdesc_processOutgoingCalls" />
959
960 <!-- Allows modification of the telephony state - power on, mmi, etc.
961 Does not include placing calls. -->
962 <permission android:name="android.permission.MODIFY_PHONE_STATE"
963 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800964 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 android:label="@string/permlab_modifyPhoneState"
966 android:description="@string/permdesc_modifyPhoneState" />
967
Scott Main2681faa2012-11-01 12:18:31 -0700968 <!-- Allows read only access to phone state.
969 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
970 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
971 minSdkVersion}</a> and <a
972 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
973 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
974 grants your app this permission. If you don't need this permission, be sure your <a
975 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
976 targetSdkVersion}</a> is 4 or higher. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 <permission android:name="android.permission.READ_PHONE_STATE"
978 android:permissionGroup="android.permission-group.PHONE_CALLS"
979 android:protectionLevel="dangerous"
980 android:label="@string/permlab_readPhoneState"
981 android:description="@string/permdesc_readPhoneState" />
982
Jake Hamby463f2212011-07-21 17:55:53 -0700983 <!-- Allows read access to privileged phone state.
984 @hide Used internally. -->
985 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
986 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800987 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -0700988
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700989 <!-- Allows an application to initiate a phone call without going through
990 the Dialer user interface for the user to confirm the call
991 being placed. -->
992 <permission android:name="android.permission.CALL_PHONE"
993 android:permissionGroup="android.permission-group.PHONE_CALLS"
994 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700995 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700996 android:label="@string/permlab_callPhone"
997 android:description="@string/permdesc_callPhone" />
998
999 <!-- Allows an application to use SIP service -->
1000 <permission android:name="android.permission.USE_SIP"
1001 android:permissionGroup="android.permission-group.PHONE_CALLS"
1002 android:protectionLevel="dangerous"
1003 android:description="@string/permdesc_use_sip"
1004 android:label="@string/permlab_use_sip" />
1005
San Mehat29b57e62009-04-23 09:18:32 -07001006 <!-- ================================== -->
1007 <!-- Permissions for sdcard interaction -->
1008 <!-- ================================== -->
1009 <eat-comment />
1010
1011 <!-- Group of permissions that are related to SD card access. -->
1012 <permission-group android:name="android.permission-group.STORAGE"
1013 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001014 android:icon="@drawable/perm_group_storage"
1015 android:description="@string/permgroupdesc_storage"
1016 android:permissionGroupFlags="personalInfo"
1017 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -07001018
Scott Main2681faa2012-11-01 12:18:31 -07001019 <!-- Allows an application to read from external storage.
1020 <p>Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly
1021 granted this permission.</p>
1022 <p>Currently, this permission is not enforced and all apps still have access to read from
1023 external storage without this permission. That will change in a future release and apps
1024 will require this permission to read from external storage. So if your
1025 app reads from the external storage, you should add this permission to your app now
1026 to ensure that it continues to work on future versions of Android.</p>
1027 <p>You can test your app with the permission enforced by either running your app on the
1028 Android Emulator when running Android 4.1 or higher, or enabling <em>Protect USB
1029 storage</em> under Developer options in the Settings app on a device running Android 4.1 or
1030 higher.</p>
1031 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1032 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1033 minSdkVersion}</a> and <a
1034 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1035 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1036 grants your app this permission. If you don't need this permission, be sure your <a
1037 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1038 targetSdkVersion}</a> is 4 or higher.-->
Dianne Hackborn79245122012-03-12 10:51:26 -07001039 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001040 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -07001041 android:label="@string/permlab_sdcardRead"
1042 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -07001043 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -07001044
Scott Main2681faa2012-11-01 12:18:31 -07001045 <!-- Allows an application to write to external storage.
1046 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1047 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1048 minSdkVersion}</a> and <a
1049 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1050 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1051 grants your app this permission. If you don't need this permission, be sure your <a
1052 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1053 targetSdkVersion}</a> is 4 or higher. -->
San Mehat5a3a77d2009-06-01 09:25:28 -07001054 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -07001055 android:permissionGroup="android.permission-group.STORAGE"
1056 android:label="@string/permlab_sdcardWrite"
1057 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -07001058 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -07001059
Mike Lockwood1e23db42011-04-22 07:05:21 -07001060 <!-- Allows an application to write to internal media storage
1061 @hide -->
1062 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
1063 android:permissionGroup="android.permission-group.STORAGE"
1064 android:label="@string/permlab_mediaStorageWrite"
1065 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -08001066 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -07001067
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001068 <!-- ================================== -->
1069 <!-- Permissions for screenlock -->
1070 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001072
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001073 <!-- Group of permissions that are related to the screenlock. -->
1074 <permission-group android:name="android.permission-group.SCREENLOCK"
1075 android:label="@string/permgrouplab_storage"
1076 android:icon="@drawable/perm_group_screenlock"
1077 android:permissionGroupFlags="personalInfo"
1078 android:description="@string/permgroupdesc_storage"
1079 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001080
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001081 <!-- Allows applications to disable the keyguard -->
1082 <permission android:name="android.permission.DISABLE_KEYGUARD"
1083 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001084 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001085 android:description="@string/permdesc_disableKeyguard"
1086 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001087
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001088 <!-- ================================== -->
1089 <!-- Permissions to access other installed applications -->
1090 <!-- ================================== -->
1091 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001093 <!-- Group of permissions that are related to the other applications
1094 installed on the system. Examples include such as listing
1095 running apps, or killing background processes. -->
1096 <permission-group android:name="android.permission-group.APP_INFO"
1097 android:label="@string/permgrouplab_appInfo"
1098 android:icon="@drawable/perm_group_app_info"
1099 android:description="@string/permgroupdesc_appInfo"
1100 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001101
1102 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -07001103 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001105 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 android:protectionLevel="dangerous"
1107 android:label="@string/permlab_getTasks"
1108 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -07001109 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -07001110 across the users on the device, using singleton services and
1111 user-targeted broadcasts. This permission is not available to
1112 third party applications. -->
1113 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
1114 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1115 android:protectionLevel="signature|system|development"
1116 android:label="@string/permlab_interactAcrossUsers"
1117 android:description="@string/permdesc_interactAcrossUsers" />
1118
1119 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
1120 that removes restrictions on where broadcasts can be sent and allows other
1121 types of interactions. -->
1122 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1123 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1124 android:protectionLevel="signature"
1125 android:label="@string/permlab_interactAcrossUsersFull"
1126 android:description="@string/permdesc_interactAcrossUsersFull" />
1127
Dianne Hackborn8832c182012-09-17 17:20:24 -07001128 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001129 users on the device. This permission is not available to
1130 third party applications. -->
1131 <permission android:name="android.permission.MANAGE_USERS"
1132 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001133 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001134 android:label="@string/permlab_manageUsers"
1135 android:description="@string/permdesc_manageUsers" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001136
Dianne Hackborn8238e712012-04-24 11:15:40 -07001137 <!-- Allows an application to get full detailed information about
1138 recently running tasks, with full fidelity to the real state.
1139 @hide -->
1140 <permission android:name="android.permission.GET_DETAILED_TASKS"
1141 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1142 android:protectionLevel="signature"
1143 android:label="@string/permlab_getDetailedTasks"
1144 android:description="@string/permdesc_getDetailedTasks" />
1145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 <!-- Allows an application to change the Z-order of tasks -->
1147 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001148 android:permissionGroup="android.permission-group.APP_INFO"
1149 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150 android:label="@string/permlab_reorderTasks"
1151 android:description="@string/permdesc_reorderTasks" />
1152
Dianne Hackborn24a12102011-07-29 15:52:05 -07001153 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001154 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001155 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001156 android:protectionLevel="signature"
1157 android:label="@string/permlab_removeTasks"
1158 android:description="@string/permdesc_removeTasks" />
1159
Jeff Sharkey35be7562012-04-18 19:16:15 -07001160 <!-- Allows an application to start any activity, regardless of permission
1161 protection or exported state. @hide -->
1162 <permission android:name="android.permission.START_ANY_ACTIVITY"
1163 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1164 android:protectionLevel="signature"
1165 android:label="@string/permlab_startAnyActivity"
1166 android:description="@string/permdesc_startAnyActivity" />
1167
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001168 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1169 API is no longer supported. -->
1170 <permission android:name="android.permission.RESTART_PACKAGES"
1171 android:permissionGroup="android.permission-group.APP_INFO"
1172 android:protectionLevel="normal"
1173 android:label="@string/permlab_killBackgroundProcesses"
1174 android:description="@string/permdesc_killBackgroundProcesses" />
1175
1176 <!-- Allows an application to call
1177 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1178 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1179 android:permissionGroup="android.permission-group.APP_INFO"
1180 android:protectionLevel="normal"
1181 android:label="@string/permlab_killBackgroundProcesses"
1182 android:description="@string/permdesc_killBackgroundProcesses" />
1183
1184 <!-- ================================== -->
1185 <!-- Permissions affecting the display of other applications -->
1186 <!-- ================================== -->
1187 <eat-comment />
1188
1189 <!-- Group of permissions that allow manipulation of how
1190 another application displays UI to the user. -->
1191 <permission-group android:name="android.permission-group.DISPLAY"
1192 android:label="@string/permgrouplab_display"
1193 android:icon="@drawable/perm_group_display"
1194 android:description="@string/permgroupdesc_display"
1195 android:priority="190"/>
1196
1197 <!-- Allows an application to open windows using the type
1198 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1199 shown on top of all other applications. Very few applications
1200 should use this permission; these windows are intended for
1201 system-level interaction with the user. -->
1202 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1203 android:permissionGroup="android.permission-group.DISPLAY"
1204 android:protectionLevel="dangerous"
1205 android:label="@string/permlab_systemAlertWindow"
1206 android:description="@string/permdesc_systemAlertWindow" />
1207
1208 <!-- ================================== -->
1209 <!-- Permissions affecting the system wallpaper -->
1210 <!-- ================================== -->
1211 <eat-comment />
1212
1213 <!-- Group of permissions that allow manipulation of how
1214 another application displays UI to the user. -->
1215 <permission-group android:name="android.permission-group.WALLPAPER"
1216 android:label="@string/permgrouplab_wallpaper"
1217 android:icon="@drawable/perm_group_wallpaper"
1218 android:description="@string/permgroupdesc_wallpaper"
1219 android:priority="150" />
1220
1221 <!-- Allows applications to set the wallpaper -->
1222 <permission android:name="android.permission.SET_WALLPAPER"
1223 android:permissionGroup="android.permission-group.WALLPAPER"
1224 android:protectionLevel="normal"
1225 android:label="@string/permlab_setWallpaper"
1226 android:description="@string/permdesc_setWallpaper" />
1227
1228 <!-- Allows applications to set the wallpaper hints -->
1229 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1230 android:permissionGroup="android.permission-group.WALLPAPER"
1231 android:protectionLevel="normal"
1232 android:label="@string/permlab_setWallpaperHints"
1233 android:description="@string/permdesc_setWallpaperHints" />
1234
1235 <!-- ============================================ -->
1236 <!-- Permissions for changing the system clock -->
1237 <!-- ============================================ -->
1238 <eat-comment />
1239
1240 <!-- Group of permissions that are related to system clock. -->
1241 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1242 android:label="@string/permgrouplab_systemClock"
1243 android:icon="@drawable/perm_group_system_clock"
1244 android:description="@string/permgroupdesc_systemClock"
1245 android:priority="140" />
1246
1247 <!-- Allows applications to set the system time -->
1248 <permission android:name="android.permission.SET_TIME"
1249 android:protectionLevel="signature|system"
1250 android:label="@string/permlab_setTime"
1251 android:description="@string/permdesc_setTime" />
1252
1253 <!-- Allows applications to set the system time zone -->
1254 <permission android:name="android.permission.SET_TIME_ZONE"
1255 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1256 android:protectionLevel="normal"
1257 android:label="@string/permlab_setTimeZone"
1258 android:description="@string/permdesc_setTimeZone" />
1259
1260 <!-- ==================================================== -->
1261 <!-- Permissions related to changing status bar -->
1262 <!-- ==================================================== -->
1263
1264 <!-- Used for permissions that change the status bar -->
1265 <permission-group android:name="android.permission-group.STATUS_BAR"
1266 android:label="@string/permgrouplab_statusBar"
1267 android:icon="@drawable/perm_group_status_bar"
1268 android:description="@string/permgroupdesc_statusBar"
1269 android:priority="110" />
1270
1271 <!-- Allows an application to expand or collapse the status bar. -->
1272 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1273 android:permissionGroup="android.permission-group.STATUS_BAR"
1274 android:protectionLevel="normal"
1275 android:label="@string/permlab_expandStatusBar"
1276 android:description="@string/permdesc_expandStatusBar" />
1277
1278 <!-- ==================================================== -->
1279 <!-- Permissions related to accessing sync settings -->
1280 <!-- ==================================================== -->
1281
1282 <!-- Used for permissions that access the sync settings or sync
1283 related information. -->
1284 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1285 android:label="@string/permgrouplab_syncSettings"
1286 android:icon="@drawable/perm_group_sync_settings"
1287 android:description="@string/permgroupdesc_syncSettings"
1288 android:priority="120" />
1289
1290 <!-- Allows applications to read the sync settings -->
1291 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1292 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1293 android:protectionLevel="normal"
1294 android:description="@string/permdesc_readSyncSettings"
1295 android:label="@string/permlab_readSyncSettings" />
1296
1297 <!-- Allows applications to write the sync settings -->
1298 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1299 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1300 android:protectionLevel="normal"
1301 android:description="@string/permdesc_writeSyncSettings"
1302 android:label="@string/permlab_writeSyncSettings" />
1303
1304 <!-- Allows applications to read the sync stats -->
1305 <permission android:name="android.permission.READ_SYNC_STATS"
1306 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1307 android:protectionLevel="normal"
1308 android:description="@string/permdesc_readSyncStats"
1309 android:label="@string/permlab_readSyncStats" />
1310
1311
1312 <!-- ============================================ -->
1313 <!-- Permissions for low-level system interaction -->
1314 <!-- ============================================ -->
1315 <eat-comment />
1316
1317 <!-- Group of permissions that are related to system APIs. Many
1318 of these are not permissions the user will be expected to understand,
1319 and such permissions should generally be marked as "normal" protection
1320 level so they don't get displayed. This can also, however, be used
1321 for miscellaneous features that provide access to the operating system,
1322 such as writing the global system settings. -->
1323 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1324 android:label="@string/permgrouplab_systemTools"
1325 android:icon="@drawable/perm_group_system_tools"
1326 android:description="@string/permgroupdesc_systemTools"
1327 android:priority="100" />
1328
1329 <!-- @hide Change the screen compatibility mode of applications -->
1330 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1331 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1332 android:protectionLevel="signature"
1333 android:label="@string/permlab_setScreenCompatibility"
1334 android:description="@string/permdesc_setScreenCompatibility" />
1335
1336 <!-- Allows an application to access all multi-user external storage @hide -->
1337 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1338 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1339 android:label="@string/permlab_sdcardAccessAll"
1340 android:description="@string/permdesc_sdcardAccessAll"
1341 android:protectionLevel="signature" />
1342
1343 <!-- Allows an application to modify the current configuration, such
1344 as locale. -->
1345 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001346 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001347 android:protectionLevel="signature|system|development"
1348 android:label="@string/permlab_changeConfiguration"
1349 android:description="@string/permdesc_changeConfiguration" />
1350
1351 <!-- Allows an application to read or write the system settings. -->
1352 <permission android:name="android.permission.WRITE_SETTINGS"
1353 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1354 android:protectionLevel="normal"
1355 android:label="@string/permlab_writeSettings"
1356 android:description="@string/permdesc_writeSettings" />
1357
1358 <!-- Allows an application to modify the Google service map. -->
1359 <permission android:name="android.permission.WRITE_GSERVICES"
1360 android:protectionLevel="signature|system"
1361 android:label="@string/permlab_writeGservices"
1362 android:description="@string/permdesc_writeGservices" />
1363
Dianne Hackborn03abb812010-01-04 18:43:19 -08001364 <!-- Allows an application to call
1365 {@link android.app.ActivityManager#forceStopPackage}.
1366 @hide -->
1367 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1368 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1369 android:protectionLevel="signature"
1370 android:label="@string/permlab_forceStopPackages"
1371 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001372
Dianne Hackborn24a12102011-07-29 15:52:05 -07001373 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001374 An active window is the window that has fired an accessibility event. -->
1375 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1376 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001377 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001378 android:label="@string/permlab_retrieve_window_content"
1379 android:description="@string/permdesc_retrieve_window_content" />
1380
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001381 <!-- Modify the global animation scaling factor. -->
1382 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1383 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001384 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385 android:label="@string/permlab_setAnimationScale"
1386 android:description="@string/permdesc_setAnimationScale" />
1387
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001388 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001389 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001390 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001391 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001392 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 android:label="@string/permlab_persistentActivity"
1394 android:description="@string/permdesc_persistentActivity" />
1395
1396 <!-- Allows an application to find out the space used by any package. -->
1397 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1398 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1399 android:protectionLevel="normal"
1400 android:label="@string/permlab_getPackageSize"
1401 android:description="@string/permdesc_getPackageSize" />
1402
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001403 <!-- @deprecated No longer useful, see
1404 {@link android.content.pm.PackageManager#addPackageToPreferred}
1405 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001406 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1407 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001408 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001409 android:label="@string/permlab_setPreferredApplications"
1410 android:description="@string/permdesc_setPreferredApplications" />
1411
1412 <!-- Allows an application to receive the
1413 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1414 broadcast after the system finishes booting. If you don't
1415 request this permission, you will not receive the broadcast at
1416 that time. Though holding this permission does not have any
1417 security implications, it can have a negative impact on the
1418 user experience by increasing the amount of time it takes the
1419 system to start and allowing applications to have themselves
1420 running without the user being aware of them. As such, you must
1421 explicitly declare your use of this facility to make that visible
1422 to the user. -->
1423 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001424 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 android:protectionLevel="normal"
1426 android:label="@string/permlab_receiveBootCompleted"
1427 android:description="@string/permdesc_receiveBootCompleted" />
1428
1429 <!-- Allows an application to broadcast sticky intents. These are
1430 broadcasts whose data is held by the system after being finished,
1431 so that clients can quickly retrieve that data without having
1432 to wait for the next broadcast. -->
1433 <permission android:name="android.permission.BROADCAST_STICKY"
1434 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1435 android:protectionLevel="normal"
1436 android:label="@string/permlab_broadcastSticky"
1437 android:description="@string/permdesc_broadcastSticky" />
1438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 <!-- Allows mounting and unmounting file systems for removable storage. -->
1440 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
1441 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001442 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001443 android:label="@string/permlab_mount_unmount_filesystems"
1444 android:description="@string/permdesc_mount_unmount_filesystems" />
1445
1446 <!-- Allows formatting file systems for removable storage. -->
1447 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1448 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001449 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 android:label="@string/permlab_mount_format_filesystems"
1451 android:description="@string/permdesc_mount_format_filesystems" />
1452
San Mehat02735bc2010-01-26 15:18:08 -08001453 <!-- Allows access to ASEC non-destructive API calls
1454 @hide -->
1455 <permission android:name="android.permission.ASEC_ACCESS"
1456 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001457 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001458 android:label="@string/permlab_asec_access"
1459 android:description="@string/permdesc_asec_access" />
1460
1461 <!-- Allows creation of ASEC volumes
1462 @hide -->
1463 <permission android:name="android.permission.ASEC_CREATE"
1464 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001465 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001466 android:label="@string/permlab_asec_create"
1467 android:description="@string/permdesc_asec_create" />
1468
1469 <!-- Allows destruction of ASEC volumes
1470 @hide -->
1471 <permission android:name="android.permission.ASEC_DESTROY"
1472 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001473 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001474 android:label="@string/permlab_asec_destroy"
1475 android:description="@string/permdesc_asec_destroy" />
1476
1477 <!-- Allows mount / unmount of ASEC volumes
1478 @hide -->
1479 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1480 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001481 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001482 android:label="@string/permlab_asec_mount_unmount"
1483 android:description="@string/permdesc_asec_mount_unmount" />
1484
1485 <!-- Allows rename of ASEC volumes
1486 @hide -->
1487 <permission android:name="android.permission.ASEC_RENAME"
1488 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001489 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001490 android:label="@string/permlab_asec_rename"
1491 android:description="@string/permdesc_asec_rename" />
1492
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 <!-- Allows applications to write the apn settings -->
1494 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1495 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001496 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001497 android:description="@string/permdesc_writeApnSettings"
1498 android:label="@string/permlab_writeApnSettings" />
1499
Fred Quintana60307342009-03-24 22:48:12 -07001500 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 ContentProvider. -->
1502 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1503 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1504 android:label="@string/permlab_subscribedFeedsRead"
1505 android:description="@string/permdesc_subscribedFeedsRead"
1506 android:protectionLevel="normal" />
1507 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1508 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1509 android:label="@string/permlab_subscribedFeedsWrite"
1510 android:description="@string/permdesc_subscribedFeedsWrite"
1511 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001512
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001513 <!-- Allows applications to change network connectivity state -->
1514 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001515 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001516 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001517 android:description="@string/permdesc_changeNetworkState"
1518 android:label="@string/permlab_changeNetworkState" />
1519
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001520 <!-- Allows an application to clear the caches of all installed
1521 applications on the device. -->
1522 <permission android:name="android.permission.CLEAR_APP_CACHE"
1523 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1524 android:protectionLevel="dangerous"
1525 android:label="@string/permlab_clearAppCache"
1526 android:description="@string/permdesc_clearAppCache" />
1527
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001528 <!-- Allows an application to use any media decoder when decoding for playback
1529 @hide -->
1530 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001531 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001532 android:label="@string/permlab_anyCodecForPlayback"
1533 android:description="@string/permdesc_anyCodecForPlayback" />
1534
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 <!-- ========================================= -->
1536 <!-- Permissions for special development tools -->
1537 <!-- ========================================= -->
1538 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540 <!-- Group of permissions that are related to development features. These
1541 are not permissions that should appear in normal applications; they
1542 protect APIs that are intended only to be used for development
1543 purposes. -->
1544 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1545 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001546 android:description="@string/permgroupdesc_developmentTools"
1547 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548
Dianne Hackborne639da72012-02-21 15:11:13 -08001549 <!-- Allows an application to read or write the secure system settings. -->
1550 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1551 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1552 android:protectionLevel="signature|system|development"
1553 android:label="@string/permlab_writeSecureSettings"
1554 android:description="@string/permdesc_writeSecureSettings" />
1555
1556 <!-- Allows an application to retrieve state dump information from system
1557 services. -->
1558 <permission android:name="android.permission.DUMP"
1559 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1560 android:protectionLevel="signature|system|development"
1561 android:label="@string/permlab_dump"
1562 android:description="@string/permdesc_dump" />
1563
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001564 <!-- Allows an application to read the low-level system log files.
1565 Log entries can contain the user's private information,
1566 which is why this permission is not available to normal apps. -->
1567 <permission android:name="android.permission.READ_LOGS"
1568 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1569 android:protectionLevel="signature|system|development"
1570 android:label="@string/permlab_readLogs"
1571 android:description="@string/permdesc_readLogs" />
1572
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 <!-- Configure an application for debugging. -->
1574 <permission android:name="android.permission.SET_DEBUG_APP"
1575 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001576 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001577 android:label="@string/permlab_setDebugApp"
1578 android:description="@string/permdesc_setDebugApp" />
1579
1580 <!-- Allows an application to set the maximum number of (not needed)
1581 application processes that can be running. -->
1582 <permission android:name="android.permission.SET_PROCESS_LIMIT"
1583 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001584 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001585 android:label="@string/permlab_setProcessLimit"
1586 android:description="@string/permdesc_setProcessLimit" />
1587
1588 <!-- Allows an application to control whether activities are immediately
1589 finished when put in the background. -->
1590 <permission android:name="android.permission.SET_ALWAYS_FINISH"
1591 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001592 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001593 android:label="@string/permlab_setAlwaysFinish"
1594 android:description="@string/permdesc_setAlwaysFinish" />
1595
1596 <!-- Allow an application to request that a signal be sent to all persistent processes -->
1597 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1598 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001599 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001600 android:label="@string/permlab_signalPersistentProcesses"
1601 android:description="@string/permdesc_signalPersistentProcesses" />
1602
1603 <!-- ==================================== -->
1604 <!-- Private (signature-only) permissions -->
1605 <!-- ==================================== -->
1606 <eat-comment />
1607
1608 <!-- Allows applications to RW to diagnostic resources. -->
1609 <permission android:name="android.permission.DIAGNOSTIC"
1610 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1611 android:protectionLevel="signature"
1612 android:description="@string/permdesc_diagnostic"
1613 android:label="@string/permlab_diagnostic" />
1614
1615 <!-- Allows an application to open, close, or disable the status bar
1616 and its icons. -->
1617 <permission android:name="android.permission.STATUS_BAR"
1618 android:label="@string/permlab_statusBar"
1619 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001620 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001621
Joe Onorato8bc6c512010-06-04 16:21:12 -04001622 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1623 @hide -->
1624 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1625 android:label="@string/permlab_statusBarService"
1626 android:description="@string/permdesc_statusBarService"
1627 android:protectionLevel="signature" />
1628
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 <!-- Allows an application to force a BACK operation on whatever is the
1630 top activity. -->
1631 <permission android:name="android.permission.FORCE_BACK"
1632 android:label="@string/permlab_forceBack"
1633 android:description="@string/permdesc_forceBack"
1634 android:protectionLevel="signature" />
1635
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636 <!-- Allows an application to update device statistics. Not for
1637 use by third party apps. -->
1638 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001639 android:label="@string/permlab_updateBatteryStats"
1640 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001641 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001642
Dianne Hackborn35654b62013-01-14 17:38:02 -08001643 <!-- @hide Allows an application to collect battery statistics -->
1644 <permission android:name="android.permission.GET_APP_OPS_STATS"
1645 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1646 android:label="@string/permlab_getAppOpsStats"
1647 android:description="@string/permdesc_getAppOpsStats"
1648 android:protectionLevel="signature|system|development" />
1649
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001650 <!-- Allows an application to update application operation statistics. Not for
1651 use by third party apps. @hide -->
1652 <permission android:name="android.permission.UPDATE_APP_OPS_STATS"
1653 android:label="@string/permlab_updateAppOpsStats"
1654 android:description="@string/permdesc_updateAppOpsStats"
1655 android:protectionLevel="signature|system" />
1656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001657 <!-- Allows an application to open windows that are for use by parts
1658 of the system user interface. Not for use by third party apps. -->
1659 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1660 android:label="@string/permlab_internalSystemWindow"
1661 android:description="@string/permdesc_internalSystemWindow"
1662 android:protectionLevel="signature" />
1663
1664 <!-- Allows an application to manage (create, destroy,
1665 Z-order) application tokens in the window manager. This is only
1666 for use by the system. -->
1667 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1668 android:label="@string/permlab_manageAppTokens"
1669 android:description="@string/permdesc_manageAppTokens"
1670 android:protectionLevel="signature" />
1671
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001672 <!-- @hide Allows the application to temporarily freeze the screen for a
1673 full-screen transition. -->
1674 <permission android:name="android.permission.FREEZE_SCREEN"
1675 android:label="@string/permlab_freezeScreen"
1676 android:description="@string/permdesc_freezeScreen"
1677 android:protectionLevel="signature" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001679 <!-- Allows an application to inject user events (keys, touch, trackball)
1680 into the event stream and deliver them to ANY window. Without this
1681 permission, you can only deliver events to windows in your own process.
1682 Very few applications should need to use this permission. -->
1683 <permission android:name="android.permission.INJECT_EVENTS"
1684 android:label="@string/permlab_injectEvents"
1685 android:description="@string/permdesc_injectEvents"
1686 android:protectionLevel="signature" />
1687
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001688 <!-- @hide Allows an application to register an input filter which filters the stream
1689 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1690 <permission android:name="android.permission.FILTER_EVENTS"
1691 android:label="@string/permlab_filter_events"
1692 android:description="@string/permdesc_filter_events"
1693 android:protectionLevel="signature" />
1694
1695 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1696 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1697 android:label="@string/permlab_retrieve_window_info"
1698 android:description="@string/permdesc_retrieve_window_info"
1699 android:protectionLevel="signature" />
1700
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001701 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1702 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1703 android:label="@string/permlab_temporary_enable_accessibility"
1704 android:description="@string/permdesc_temporary_enable_accessibility"
1705 android:protectionLevel="signature" />
1706
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001707 <!-- @hide Allows an application to magnify the content of a display. -->
1708 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1709 android:label="@string/permlab_magnify_display"
1710 android:description="@string/permdesc_magnify_display"
1711 android:protectionLevel="signature" />
1712
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001713 <!-- Allows an application to watch and control how activities are
1714 started globally in the system. Only for is in debugging
1715 (usually the monkey command). -->
1716 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1717 android:label="@string/permlab_runSetActivityWatcher"
1718 android:description="@string/permdesc_runSetActivityWatcher"
1719 android:protectionLevel="signature" />
1720
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001721 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001722 to put the higher-level system there into a shutdown state.
1723 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001724 <permission android:name="android.permission.SHUTDOWN"
1725 android:label="@string/permlab_shutdown"
1726 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001727 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001728
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001729 <!-- Allows an application to tell the activity manager to temporarily
1730 stop application switches, putting it into a special mode that
1731 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001732 critical UI such as the home screen.
1733 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001734 <permission android:name="android.permission.STOP_APP_SWITCHES"
1735 android:label="@string/permlab_stopAppSwitches"
1736 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001737 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001738
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08001739 <!-- Allows an application to retrieve private information about
1740 the current top activity, such as any assist context it can provide. -->
1741 <permission android:name="android.permission.GET_TOP_ACTIVITY_INFO"
1742 android:label="@string/permlab_getTopActivityInfo"
1743 android:description="@string/permdesc_getTopActivityInfo"
1744 android:protectionLevel="signature" />
1745
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001746 <!-- Allows an application to retrieve the current state of keys and
Jeff Brownac143512012-04-05 18:57:33 -07001747 switches. This is only for use by the system.
1748 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001749 <permission android:name="android.permission.READ_INPUT_STATE"
1750 android:label="@string/permlab_readInputState"
1751 android:description="@string/permdesc_readInputState"
1752 android:protectionLevel="signature" />
1753
Dianne Hackbornd6847842010-01-12 18:14:19 -08001754 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1755 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001756 <permission android:name="android.permission.BIND_INPUT_METHOD"
1757 android:label="@string/permlab_bindInputMethod"
1758 android:description="@string/permdesc_bindInputMethod"
1759 android:protectionLevel="signature" />
1760
Svetoslav38228962013-01-29 01:04:35 -08001761 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001762 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001763 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1764 android:label="@string/permlab_bindAccessibilityService"
1765 android:description="@string/permdesc_bindAccessibilityService"
1766 android:protectionLevel="signature" />
1767
satok988323c2011-06-22 16:38:13 +09001768 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1769 to ensure that only the system can bind to it. -->
1770 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1771 android:label="@string/permlab_bindTextService"
1772 android:description="@string/permdesc_bindTextService"
1773 android:protectionLevel="signature" />
1774
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001775 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001776 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001777 <permission android:name="android.permission.BIND_VPN_SERVICE"
1778 android:label="@string/permlab_bindVpnService"
1779 android:description="@string/permdesc_bindVpnService"
1780 android:protectionLevel="signature" />
1781
Dianne Hackbornd6847842010-01-12 18:14:19 -08001782 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1783 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001784 <permission android:name="android.permission.BIND_WALLPAPER"
1785 android:label="@string/permlab_bindWallpaper"
1786 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001787 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001788
Dianne Hackbornd6847842010-01-12 18:14:19 -08001789 <!-- Must be required by device administration receiver, to ensure that only the
1790 system can interact with it. -->
1791 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1792 android:label="@string/permlab_bindDeviceAdmin"
1793 android:description="@string/permdesc_bindDeviceAdmin"
1794 android:protectionLevel="signature" />
1795
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001796 <!-- Allows low-level access to setting the orientation (actually
1797 rotation) of the screen. Not for use by normal applications. -->
1798 <permission android:name="android.permission.SET_ORIENTATION"
1799 android:label="@string/permlab_setOrientation"
1800 android:description="@string/permdesc_setOrientation"
1801 android:protectionLevel="signature" />
1802
Jeff Brown1a84fd12011-06-02 01:26:32 -07001803 <!-- Allows low-level access to setting the pointer speed.
1804 Not for use by normal applications. -->
1805 <permission android:name="android.permission.SET_POINTER_SPEED"
1806 android:label="@string/permlab_setPointerSpeed"
1807 android:description="@string/permdesc_setPointerSpeed"
1808 android:protectionLevel="signature" />
1809
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001810 <!-- Allows low-level access to setting the keyboard layout.
Jeff Brown507f5582012-05-07 19:06:06 -07001811 Not for use by normal applications.
1812 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001813 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1814 android:label="@string/permlab_setKeyboardLayout"
1815 android:description="@string/permdesc_setKeyboardLayout"
1816 android:protectionLevel="signature" />
1817
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001818 <!-- Allows an application to install packages. -->
1819 <permission android:name="android.permission.INSTALL_PACKAGES"
1820 android:label="@string/permlab_installPackages"
1821 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001822 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001823
1824 <!-- Allows an application to clear user data -->
1825 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1826 android:label="@string/permlab_clearAppUserData"
1827 android:description="@string/permdesc_clearAppUserData"
1828 android:protectionLevel="signature" />
1829
1830 <!-- Allows an application to delete cache files. -->
1831 <permission android:name="android.permission.DELETE_CACHE_FILES"
1832 android:label="@string/permlab_deleteCacheFiles"
1833 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001834 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001835
1836 <!-- Allows an application to delete packages. -->
1837 <permission android:name="android.permission.DELETE_PACKAGES"
1838 android:label="@string/permlab_deletePackages"
1839 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001840 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001841
Jeff Brownec7c78f2010-03-30 23:37:25 -07001842 <!-- Allows an application to move location of installed package.
1843 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001844 <permission android:name="android.permission.MOVE_PACKAGE"
1845 android:label="@string/permlab_movePackage"
1846 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001847 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001848
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 <!-- Allows an application to change whether an application component (other than its own) is
1850 enabled or not. -->
1851 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1852 android:label="@string/permlab_changeComponentState"
1853 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001854 android:protectionLevel="signature|system" />
1855
1856 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1857 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1858 android:label="@string/permlab_grantRevokePermissions"
1859 android:description="@string/permdesc_grantRevokePermissions"
1860 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001861
1862 <!-- Allows an application to use SurfaceFlinger's low level features -->
1863 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1864 android:label="@string/permlab_accessSurfaceFlinger"
1865 android:description="@string/permdesc_accessSurfaceFlinger"
1866 android:protectionLevel="signature" />
1867
1868 <!-- Allows an application to take screen shots and more generally
1869 get access to the frame buffer data -->
1870 <permission android:name="android.permission.READ_FRAME_BUFFER"
1871 android:label="@string/permlab_readFrameBuffer"
1872 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001873 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001874
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001875 <!-- Allows an application to configure and connect to Wifi displays
1876 @hide -->
1877 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1878 android:label="@string/permlab_configureWifiDisplay"
1879 android:description="@string/permdesc_configureWifiDisplay"
1880 android:protectionLevel="signature" />
1881
1882 <!-- Allows an application to control low-level features of Wifi displays
1883 such as opening an RTSP socket. This permission should only be used
1884 by the display manager.
1885 @hide -->
1886 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1887 android:label="@string/permlab_controlWifiDisplay"
1888 android:description="@string/permdesc_controlWifiDisplay"
1889 android:protectionLevel="signature" />
1890
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001891 <!-- Required to be able to disable the device (very dangerous!). -->
1892 <permission android:name="android.permission.BRICK"
1893 android:label="@string/permlab_brick"
1894 android:description="@string/permdesc_brick"
1895 android:protectionLevel="signature" />
1896
1897 <!-- Required to be able to reboot the device. -->
1898 <permission android:name="android.permission.REBOOT"
1899 android:label="@string/permlab_reboot"
1900 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001901 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001902
1903 <!-- Allows low-level access to power management -->
1904 <permission android:name="android.permission.DEVICE_POWER"
1905 android:label="@string/permlab_devicePower"
1906 android:description="@string/permdesc_devicePower"
1907 android:protectionLevel="signature" />
1908
Dianne Hackborn8832c182012-09-17 17:20:24 -07001909 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001910 <permission android:name="android.permission.NET_TUNNELING"
1911 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1912 android:protectionLevel="signature" />
1913
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914 <!-- Run as a manufacturer test application, running as the root user.
1915 Only available when the device is running in manufacturer test mode. -->
1916 <permission android:name="android.permission.FACTORY_TEST"
1917 android:label="@string/permlab_factoryTest"
1918 android:description="@string/permdesc_factoryTest"
1919 android:protectionLevel="signature" />
1920
1921 <!-- Allows an application to broadcast a notification that an application
1922 package has been removed. -->
1923 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1924 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1925 android:label="@string/permlab_broadcastPackageRemoved"
1926 android:description="@string/permdesc_broadcastPackageRemoved"
1927 android:protectionLevel="signature" />
1928
1929 <!-- Allows an application to broadcast an SMS receipt notification -->
1930 <permission android:name="android.permission.BROADCAST_SMS"
1931 android:permissionGroup="android.permission-group.MESSAGES"
1932 android:label="@string/permlab_broadcastSmsReceived"
1933 android:description="@string/permdesc_broadcastSmsReceived"
1934 android:protectionLevel="signature" />
1935
1936 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1937 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1938 android:permissionGroup="android.permission-group.MESSAGES"
1939 android:label="@string/permlab_broadcastWapPush"
1940 android:description="@string/permdesc_broadcastWapPush"
1941 android:protectionLevel="signature" />
1942
1943 <permission android:name="android.permission.MASTER_CLEAR"
1944 android:label="@string/permlab_masterClear"
1945 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08001946 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001947
1948 <!-- Allows an application to call any phone number, including emergency
1949 numbers, without going through the Dialer user interface for the user
1950 to confirm the call being placed. -->
1951 <permission android:name="android.permission.CALL_PRIVILEGED"
1952 android:label="@string/permlab_callPrivileged"
1953 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08001954 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955
Jim Miller767be5f2009-08-25 19:33:57 -07001956 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1957 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1958 android:label="@string/permlab_performCdmaProvisioning"
1959 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08001960 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07001961
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001962 <!-- Allows enabling/disabling location update notifications from
1963 the radio. Not for use by normal applications. -->
1964 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1965 android:label="@string/permlab_locationUpdates"
1966 android:description="@string/permdesc_locationUpdates"
Dianne Hackborne639da72012-02-21 15:11:13 -08001967 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001968
1969 <!-- Allows read/write access to the "properties" table in the checkin
1970 database, to change values that get uploaded. -->
1971 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1972 android:label="@string/permlab_checkinProperties"
1973 android:description="@string/permdesc_checkinProperties"
Dianne Hackborne639da72012-02-21 15:11:13 -08001974 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975
1976 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001977 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1979 android:label="@string/permlab_pkgUsageStats"
1980 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001981 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982
1983 <!-- Allows an application to collect battery statistics -->
1984 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001985 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 android:label="@string/permlab_batteryStats"
1987 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001988 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989
Christopher Tate181fafa2009-05-14 11:12:14 -07001990 <!-- Allows an application to control the backup and restore process
1991 @hide pending API council -->
1992 <permission android:name="android.permission.BACKUP"
1993 android:label="@string/permlab_backup"
1994 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08001995 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001996
Christopher Tate4a627c72011-04-01 14:43:32 -07001997 <!-- Allows a package to launch the secure full-backup confirmation UI.
1998 ONLY the system process may hold this permission.
1999 @hide -->
2000 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
2001 android:label="@string/permlab_confirm_full_backup"
2002 android:description="@string/permdesc_confirm_full_backup"
2003 android:protectionLevel="signature" />
2004
Winson Chung81f39eb2011-01-11 18:05:01 -08002005 <!-- Must be required by a {@link android.widget.RemoteViewsService},
2006 to ensure that only the system can bind to it. -->
2007 <permission android:name="android.permission.BIND_REMOTEVIEWS"
2008 android:label="@string/permlab_bindRemoteViews"
2009 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08002010 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08002011
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002012 <!-- Allows an application to tell the AppWidget service which application
2013 can access AppWidget's data. The normal user flow is that a user
2014 picks an AppWidget to go into a particular host, thereby giving that
2015 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002016 An application that has this permission should honor that contract.
2017 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002018 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002019 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2020 android:label="@string/permlab_bindGadget"
2021 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08002022 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023
Michael Jurkafc753c02012-10-30 18:30:52 -07002024 <!-- Private permission, to restrict who can bring up a dialog to add a new
2025 keyguard widget
2026 @hide -->
2027 <permission android:name="android.permission.BIND_KEYGUARD_APPWIDGET"
2028 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2029 android:protectionLevel="signature|system" />
2030
Michael Jurka61a5b012012-04-13 10:39:45 -07002031 <!-- Internal permission allowing an application to query/set which
2032 applications can bind AppWidgets.
2033 @hide -->
2034 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
2035 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2036 android:protectionLevel="signature|system" />
2037
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038 <!-- Allows applications to change the background data setting
2039 @hide pending API council -->
2040 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
2041 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2042 android:protectionLevel="signature"
2043 android:description="@string/permdesc_changeBackgroundDataSetting"
2044 android:label="@string/permlab_changeBackgroundDataSetting" />
2045
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002046 <!-- This permission can be used on content providers to allow the global
2047 search system to access their data. Typically it used when the
2048 provider has some permissions protecting it (which global search
2049 would not be expected to hold), and added as a read-only permission
2050 to the path in the provider where global search queries are
2051 performed. This permission can not be held by regular applications;
2052 it is used by applications to protect themselves from everyone else
2053 besides global search. -->
2054 <permission android:name="android.permission.GLOBAL_SEARCH"
2055 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002056 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002057
2058 <!-- Internal permission protecting access to the global search
2059 system: ensures that only the system can access the provider
2060 to perform queries (since this otherwise provides unrestricted
2061 access to a variety of content providers), and to write the
2062 search statistics (to keep applications from gaming the source
2063 ranking).
2064 @hide -->
2065 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
2066 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2067 android:protectionLevel="signature" />
2068
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002069 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07002070 @hide XXX Change to signature once the picker is moved to its
2071 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002072 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
2073 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002074 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002075
John Spurlockf4f6b4c2012-08-25 12:08:03 -04002076 <!-- Allows applications to read dream settings and dream state.
2077 @hide -->
2078 <permission android:name="android.permission.READ_DREAM_STATE"
2079 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2080 android:protectionLevel="signature" />
2081
2082 <!-- Allows applications to write dream settings, and start or stop dreaming.
2083 @hide -->
2084 <permission android:name="android.permission.WRITE_DREAM_STATE"
2085 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2086 android:protectionLevel="signature" />
2087
Jeff Brownec7c78f2010-03-30 23:37:25 -07002088 <!-- Allow an application to read and write the cache partition.
2089 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002090 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
2091 android:label="@string/permlab_cache_filesystem"
2092 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08002093 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002094
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08002095 <!-- Must be required by default container service so that only
2096 the system can bind to it and use it to copy
2097 protected data to secure containers or files
2098 accessible to the system.
2099 @hide -->
2100 <permission android:name="android.permission.COPY_PROTECTED_DATA"
2101 android:label="@string/permlab_copyProtectedData"
2102 android:description="@string/permlab_copyProtectedData"
2103 android:protectionLevel="signature" />
2104
Jason parks8888c592011-01-20 22:46:41 -06002105 <!-- Internal permission protecting access to the encryption methods
2106 @hide
2107 -->
2108 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08002109 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06002110
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002111 <!-- Allows an application to read historical network usage for
2112 specific networks and applications. @hide -->
2113 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
2114 android:label="@string/permlab_readNetworkUsageHistory"
2115 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08002116 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002117
2118 <!-- Allows an application to manage network policies (such as warning and disable
2119 limits) and to define application-specific rules. @hide -->
2120 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
2121 android:label="@string/permlab_manageNetworkPolicy"
2122 android:description="@string/permdesc_manageNetworkPolicy"
2123 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06002124
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002125 <!-- Allows an application to account its network traffic against other UIDs. Used
2126 by system services like download manager and media server. Not for use by
2127 third party apps. @hide -->
2128 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
2129 android:label="@string/permlab_modifyNetworkAccounting"
2130 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08002131 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002132
Tom Taylorb0381682011-08-11 14:27:25 -07002133 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002134 @hide Used internally.
2135 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002136 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002137 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002138 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002139
Dianne Hackborn8832c182012-09-17 17:20:24 -07002140 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002141 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002142 -->
2143 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2144 android:label="@string/permlab_packageVerificationAgent"
2145 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002146 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002147
2148 <!-- Must be required by package verifier receiver, to ensure that only the
2149 system can interact with it.
2150 @hide
2151 -->
2152 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2153 android:label="@string/permlab_bindPackageVerifier"
2154 android:description="@string/permdesc_bindPackageVerifier"
2155 android:protectionLevel="signature" />
2156
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002157 <!-- Allows applications to access serial ports via the SerialManager.
2158 @hide -->
2159 <permission android:name="android.permission.SERIAL_PORT"
2160 android:label="@string/permlab_serialPort"
2161 android:description="@string/permdesc_serialPort"
Geremy Condrac29f35b2012-10-17 14:06:31 -07002162 android:protectionLevel="signature|system" />
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002163
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002164 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2165 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2166 in particular ActivityManagerService#getContentProviderExternal(String) and
2167 ActivityManagerService#removeContentProviderExternal(String).
2168 @hide
2169 -->
2170 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2171 android:label="@string/permlab_accessContentProvidersExternally"
2172 android:description="@string/permdesc_accessContentProvidersExternally"
2173 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002174 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2175 OTA reboot *not* occur while the lock is held.
2176 @hide -->
2177 <permission android:name="android.permission.UPDATE_LOCK"
2178 android:label="@string/permlab_updateLock"
2179 android:description="@string/permdesc_updateLock"
2180 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002181
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002182 <!-- Allows an application to read the current set of notifications, including
2183 any metadata and intents attached.
2184 @hide -->
2185 <permission android:name="android.permission.ACCESS_NOTIFICATIONS"
2186 android:label="@string/permlab_accessNotifications"
2187 android:description="@string/permdesc_accessNotifications"
2188 android:protectionLevel="signature|system" />
2189
Jim Miller5ecd8112013-01-09 18:50:26 -08002190 <!-- Allows access to keyguard secure storage. Only allowed for system processes.
2191 @hide -->
2192 <permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"
2193 android:protectionLevel="signature"
2194 android:label="@string/permlab_access_keyguard_secure_storage"
2195 android:description="@string/permdesc_access_keyguard_secure_storage" />
2196
Christopher Tate4a627c72011-04-01 14:43:32 -07002197 <!-- The system process is explicitly the only one allowed to launch the
2198 confirmation UI for full backup/restore -->
2199 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002201 <application android:process="system"
2202 android:persistent="true"
2203 android:hasCode="false"
2204 android:label="@string/android_system_label"
2205 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002206 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002207 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002208 android:icon="@drawable/ic_launcher_android"
2209 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002210 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002211 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002212 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213 android:excludeFromRecents="true"
2214 android:multiprocess="true">
2215 <intent-filter>
2216 <action android:name="android.intent.action.CHOOSER" />
2217 <category android:name="android.intent.category.DEFAULT" />
2218 </intent-filter>
2219 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002220 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002221 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002222 android:label="@string/heavy_weight_switcher_title"
2223 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002224 android:excludeFromRecents="true"
2225 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002226 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002227 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002228 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2229 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002230 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002231 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2232 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002233 android:excludeFromRecents="true"
2234 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002235 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002236
Fred Quintana33269202009-04-20 16:05:10 -07002237 <activity android:name="android.accounts.ChooseAccountActivity"
2238 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002239 android:exported="true"
2240 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002241 android:label="@string/choose_account_label"
2242 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002243 </activity>
2244
Fred Quintana1121bb52011-09-14 23:19:35 -07002245 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2246 android:excludeFromRecents="true"
2247 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002248 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002249 android:label="@string/choose_account_label"
2250 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002251 </activity>
2252
2253 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2254 android:excludeFromRecents="true"
Jatin Lodhia856b01e2012-09-28 10:53:37 -07002255 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002256 android:label="@string/choose_account_label"
2257 android:process=":ui">
2258 </activity>
2259
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002260 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2261 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002262 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002263 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2264 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002265 </activity>
2266
Fred Quintanab19e62a2010-12-16 13:54:43 -08002267 <activity android:name="android.content.SyncActivityTooManyDeletes"
2268 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002269 android:label="@string/sync_too_many_deletes"
2270 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002271 </activity>
2272
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002273 <activity android:name="com.android.server.ShutdownActivity"
2274 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002275 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002276 <intent-filter>
2277 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2278 <category android:name="android.intent.category.DEFAULT" />
2279 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002280 <intent-filter>
2281 <action android:name="android.intent.action.REBOOT" />
2282 <category android:name="android.intent.category.DEFAULT" />
2283 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002284 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002285
Danke Xie22d1f9f2009-08-18 18:28:45 -04002286 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002287 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002288 android:excludeFromRecents="true"
2289 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002290 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002291
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002292 <receiver android:name="com.android.server.BootReceiver"
2293 android:primaryUserOnly="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 <intent-filter>
2295 <action android:name="android.intent.action.BOOT_COMPLETED" />
2296 </intent-filter>
2297 </receiver>
2298
Geremy Condrab6310842012-08-23 22:00:15 -07002299 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2300 <intent-filter>
2301 <action android:name="android.intent.action.UPDATE_PINS" />
2302 </intent-filter>
2303 </receiver>
2304
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002305 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2306 <intent-filter>
2307 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2308 </intent-filter>
2309 </receiver>
2310
Geremy Condra78a4c712013-01-30 11:20:26 -08002311 <receiver android:name="com.android.server.updates.TZInfoInstallReceiver" >
2312 <intent-filter>
2313 <action android:name="android.intent.action.UPDATE_TZINFO" />
2314 </intent-filter>
2315 </receiver>
2316
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002317 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002318 android:permission="android.permission.MASTER_CLEAR"
2319 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002320 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002321 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2322 <action android:name="android.intent.action.MASTER_CLEAR" />
2323
2324 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002325 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002326 <category android:name="android.intent.category.MASTER_CLEAR" />
2327 </intent-filter>
2328 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002329
2330 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2331 android:permission="android.permission.MASTER_CLEAR"
2332 android:exported="true" />
2333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002334 </application>
2335
2336</manifest>