blob: 6f8aacfd73a4ecbddfef06edfa6a472e9205ad19 [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
Dianne Hackborna40cfeb2013-03-25 17:49:36 -070077 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_UPDATE_OPTIONS" />
78 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_DELETED" />
79 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_DISABLED" />
80 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_ENABLED" />
81
Christopher Tate4cc86e12009-09-21 19:36:51 -070082 <protected-broadcast android:name="android.backup.intent.RUN" />
83 <protected-broadcast android:name="android.backup.intent.CLEAR" />
84 <protected-broadcast android:name="android.backup.intent.INIT" />
85
Nick Pelly72440a0e2009-09-15 17:21:10 -070086 <protected-broadcast android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
87 <protected-broadcast android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
88 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
89 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
90 <protected-broadcast android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -070091 <protected-broadcast android:name="android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED" />
Nick Pelly72440a0e2009-09-15 17:21:10 -070092 <protected-broadcast android:name="android.bluetooth.device.action.FOUND" />
93 <protected-broadcast android:name="android.bluetooth.device.action.DISAPPEARED" />
94 <protected-broadcast android:name="android.bluetooth.device.action.CLASS_CHANGED" />
95 <protected-broadcast android:name="android.bluetooth.device.action.ACL_CONNECTED" />
96 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
97 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
98 <protected-broadcast android:name="android.bluetooth.device.action.NAME_CHANGED" />
99 <protected-broadcast android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
100 <protected-broadcast android:name="android.bluetooth.device.action.NAME_FAILED" />
101 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
102 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700103 <protected-broadcast android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REPLY" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700104 <protected-broadcast
105 android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
106 <protected-broadcast
107 android:name="android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED" />
108 <protected-broadcast
109 android:name="android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT" />
110 <protected-broadcast
111 android:name="android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED" />
112 <protected-broadcast
113 android:name="android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED" />
114 <protected-broadcast
115 android:name="android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED" />
116 <protected-broadcast
117 android:name="android.bluetooth.pan.profile.action.CONNECTION_STATE_CHANGED" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700118
Jeff Browne08ae382012-09-07 20:36:36 -0700119 <protected-broadcast android:name="android.hardware.display.action.WIFI_DISPLAY_STATUS_CHANGED" />
120
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800121 <protected-broadcast android:name="android.hardware.usb.action.USB_STATE" />
122 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
123 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
124 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
125 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
Mike Lockwood57c798a2010-06-23 17:36:36 -0400126
Mike Lockwood8f014052012-04-26 11:23:48 -0700127 <protected-broadcast android:name="android.intent.action.HEADSET_PLUG" />
128 <protected-broadcast android:name="android.intent.action.ANALOG_AUDIO_DOCK_PLUG" />
129 <protected-broadcast android:name="android.intent.action.DIGITAL_AUDIO_DOCK_PLUG" />
130 <protected-broadcast android:name="android.intent.action.HDMI_AUDIO_PLUG" />
131 <protected-broadcast android:name="android.intent.action.USB_AUDIO_ACCESSORY_PLUG" />
132 <protected-broadcast android:name="android.intent.action.USB_AUDIO_DEVICE_PLUG" />
133
Jeff Sharkey961e3042011-08-29 16:02:57 -0700134 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE" />
135 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE_IMMEDIATE" />
Haoyu Baidb3c8672012-06-20 14:29:57 -0700136 <protected-broadcast android:name="android.net.conn.DATA_ACTIVITY_CHANGE" />
Robert Greenwalt68b13ba2013-04-18 10:29:29 -0700137 <protected-broadcast android:name="android.net.conn.BACKGROUND_DATA_SETTING_CHANGED" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800138 <protected-broadcast android:name="android.net.conn.CAPTIVE_PORTAL_TEST_COMPLETED" />
Jeff Sharkey961e3042011-08-29 16:02:57 -0700139
Nick Pellyf36c6db2010-10-14 19:16:35 -0700140 <protected-broadcast android:name="android.nfc.action.LLCP_LINK_STATE_CHANGED" />
Nick Pelly367f41f2011-03-08 11:43:30 -0800141 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_ON_DETECTED" />
142 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED" />
143 <protected-broadcast android:name="com.android.nfc_extras.action.AID_SELECTED" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700144
Nick Pellyf36c6db2010-10-14 19:16:35 -0700145 <protected-broadcast android:name="android.nfc.action.TRANSACTION_DETECTED" />
Robert Greenwalt03595d02010-11-02 14:08:23 -0700146 <protected-broadcast android:name="android.intent.action.CLEAR_DNS_CACHE" />
Robert Greenwalt434203a2010-10-11 16:00:27 -0700147 <protected-broadcast android:name="android.intent.action.PROXY_CHANGE" />
Mike Lockwood24236072010-06-23 17:36:36 -0400148
Christopher Tate8662cab52012-02-23 14:59:36 -0800149 <protected-broadcast android:name="android.os.UpdateLock.UPDATE_LOCK_CHANGED" />
Nick Pellya64e2ad42011-03-14 10:28:11 -0700150
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400151 <protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
152 <protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800153 <protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
154
155 <protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
156 <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
157 <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" />
158 <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" />
159 <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" />
160 <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" />
161 <protected-broadcast android:name="android.net.wifi.STATE_CHANGE" />
162 <protected-broadcast android:name="android.net.wifi.LINK_CONFIGURATION_CHANGED" />
163 <protected-broadcast android:name="android.net.wifi.CONFIGURED_NETWORKS_CHANGE" />
164 <protected-broadcast android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
165 <protected-broadcast android:name="android.net.wifi.supplicant.STATE_CHANGE" />
166 <protected-broadcast android:name="android.net.wifi.p2p.STATE_CHANGED" />
167 <protected-broadcast android:name="android.net.wifi.p2p.DISCOVERY_STATE_CHANGE" />
168 <protected-broadcast android:name="android.net.wifi.p2p.THIS_DEVICE_CHANGED" />
169 <protected-broadcast android:name="android.net.wifi.p2p.PEERS_CHANGED" />
170 <protected-broadcast android:name="android.net.wifi.p2p.CONNECTION_STATE_CHANGE" />
171 <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" />
172 <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" />
173 <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" />
Nick Kralevicha4405ba2012-12-06 15:22:11 -0800174 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
175 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" />
176 <protected-broadcast android:name="android.intent.action.AIRPLANE_MODE" />
177 <protected-broadcast android:name="android.intent.action.ADVANCED_SETTINGS" />
Jeff Sharkey02ffba92013-03-08 16:13:15 -0800178 <protected-broadcast android:name="android.intent.action.BUGREPORT_FINISHED" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400179
Svetoslavb3038ec2013-02-13 14:39:30 -0800180 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_START" />
181 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_END" />
182
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 <!-- ====================================== -->
184 <!-- Permissions for things that cost money -->
185 <!-- ====================================== -->
186 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 <!-- Used for permissions that can be used to make the user spend money
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700189 without their direct involvement. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 <permission-group android:name="android.permission-group.COST_MONEY"
191 android:label="@string/permgrouplab_costMoney"
192 android:description="@string/permgroupdesc_costMoney" />
193
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 <!-- ================================== -->
195 <!-- Permissions for accessing messages -->
196 <!-- ================================== -->
197 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700198
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 <!-- Used for permissions that allow an application to send messages
200 on behalf of the user or intercept messages being received by the
201 user. This is primarily intended for SMS/MMS messaging, such as
202 receiving or reading an MMS. -->
203 <permission-group android:name="android.permission-group.MESSAGES"
204 android:label="@string/permgrouplab_messages"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700205 android:icon="@drawable/perm_group_messages"
206 android:description="@string/permgroupdesc_messages"
207 android:permissionGroupFlags="personalInfo"
208 android:priority="360"/>
209
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700210 <!-- Allows an application to send SMS messages. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700211 <permission android:name="android.permission.SEND_SMS"
212 android:permissionGroup="android.permission-group.MESSAGES"
213 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700214 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700215 android:label="@string/permlab_sendSms"
216 android:description="@string/permdesc_sendSms" />
217
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700218 <!-- Allows an application (Phone) to send a request to other applications
219 to handle the respond-via-message action during incoming calls. -->
220 <permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700221 android:permissionGroup="android.permission-group.MESSAGES"
222 android:protectionLevel="signature|system"
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700223 android:label="@string/permlab_sendRespondViaMessageRequest"
224 android:description="@string/permdesc_sendRespondViaMessageRequest" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225
226 <!-- Allows an application to monitor incoming SMS messages, to record
227 or perform processing on them. -->
228 <permission android:name="android.permission.RECEIVE_SMS"
229 android:permissionGroup="android.permission-group.MESSAGES"
230 android:protectionLevel="dangerous"
231 android:label="@string/permlab_receiveSms"
232 android:description="@string/permdesc_receiveSms" />
233
234 <!-- Allows an application to monitor incoming MMS messages, to record
235 or perform processing on them. -->
236 <permission android:name="android.permission.RECEIVE_MMS"
237 android:permissionGroup="android.permission-group.MESSAGES"
238 android:protectionLevel="dangerous"
239 android:label="@string/permlab_receiveMms"
240 android:description="@string/permdesc_receiveMms" />
241
Jake Hambyab79ee42011-04-26 16:26:46 -0700242 <!-- Allows an application to receive emergency cell broadcast messages,
243 to record or display them to the user. Reserved for system apps.
244 @hide Pending API council approval -->
245 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
246 android:permissionGroup="android.permission-group.MESSAGES"
Dianne Hackborne639da72012-02-21 15:11:13 -0800247 android:protectionLevel="signature|system"
Jake Hambyab79ee42011-04-26 16:26:46 -0700248 android:label="@string/permlab_receiveEmergencyBroadcast"
249 android:description="@string/permdesc_receiveEmergencyBroadcast" />
250
Jake Hambyc3296ff2012-04-18 12:32:18 -0700251 <!-- Allows an application to read previously received cell broadcast
252 messages and to register a content observer to get notifications when
253 a cell broadcast has been received and added to the database. For
254 emergency alerts, the database is updated immediately after the
255 alert dialog and notification sound/vibration/speech are presented.
256 The "read" column is then updated after the user dismisses the alert.
257 This enables supplementary emergency assistance apps to start loading
258 additional emergency information (if Internet access is available)
259 when the alert is first received, and to delay presenting the info
260 to the user until after the initial alert dialog is dismissed.
261 @hide Pending API council approval -->
262 <permission android:name="android.permission.READ_CELL_BROADCASTS"
263 android:permissionGroup="android.permission-group.MESSAGES"
264 android:protectionLevel="dangerous"
265 android:label="@string/permlab_readCellBroadcasts"
266 android:description="@string/permdesc_readCellBroadcasts" />
267
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 <!-- Allows an application to read SMS messages. -->
269 <permission android:name="android.permission.READ_SMS"
270 android:permissionGroup="android.permission-group.MESSAGES"
271 android:protectionLevel="dangerous"
272 android:label="@string/permlab_readSms"
273 android:description="@string/permdesc_readSms" />
274
275 <!-- Allows an application to write SMS messages. -->
276 <permission android:name="android.permission.WRITE_SMS"
277 android:permissionGroup="android.permission-group.MESSAGES"
278 android:protectionLevel="dangerous"
279 android:label="@string/permlab_writeSms"
280 android:description="@string/permdesc_writeSms" />
281
282 <!-- Allows an application to monitor incoming WAP push messages. -->
283 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
284 android:permissionGroup="android.permission-group.MESSAGES"
285 android:protectionLevel="dangerous"
286 android:label="@string/permlab_receiveWapPush"
287 android:description="@string/permdesc_receiveWapPush" />
288
289 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700290 <!-- Permissions for accessing social info (contacts and social) -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 <!-- =============================================================== -->
292 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700293
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700294 <!-- Used for permissions that provide access to the user's social connections,
295 such as contacts, call logs, social stream, etc. This includes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 both reading and writing of this data (which should generally be
297 expressed as two distinct permissions). -->
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700298
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700299 <permission-group android:name="android.permission-group.SOCIAL_INFO"
300 android:label="@string/permgrouplab_socialInfo"
301 android:icon="@drawable/perm_group_social_info"
302 android:description="@string/permgroupdesc_socialInfo"
303 android:permissionGroupFlags="personalInfo"
304 android:priority="320" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305
306 <!-- Allows an application to read the user's contacts data. -->
307 <permission android:name="android.permission.READ_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700308 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 android:protectionLevel="dangerous"
310 android:label="@string/permlab_readContacts"
311 android:description="@string/permdesc_readContacts" />
312
313 <!-- Allows an application to write (but not read) the user's
314 contacts data. -->
315 <permission android:name="android.permission.WRITE_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700316 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 android:protectionLevel="dangerous"
318 android:label="@string/permlab_writeContacts"
319 android:description="@string/permdesc_writeContacts" />
320
Subir Jhanb603af612012-08-06 17:19:22 -0700321 <!-- Allows an application to execute contacts directory search.
322 This should only be used by ContactsProvider. -->
323 <!-- @hide -->
324 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
325 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Subir Jhanb0224cca2012-08-16 17:04:54 -0700326 android:protectionLevel="signature|system" />
Subir Jhanb603af612012-08-06 17:19:22 -0700327
Scott Main2681faa2012-11-01 12:18:31 -0700328 <!-- Allows an application to read the user's call log.
329 <p class="note"><strong>Note:</strong> If your app uses the
330 {@link #READ_CONTACTS} permission and <em>both</em> your <a
331 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
332 minSdkVersion}</a> and <a
333 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
334 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
335 grants your app this permission. If you don't need this permission, be sure your <a
336 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
337 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700338 <permission android:name="android.permission.READ_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700339 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700340 android:protectionLevel="dangerous"
341 android:label="@string/permlab_readCallLog"
342 android:description="@string/permdesc_readCallLog" />
343
344 <!-- Allows an application to write (but not read) the user's
Scott Main2681faa2012-11-01 12:18:31 -0700345 contacts data.
346 <p class="note"><strong>Note:</strong> If your app uses the
347 {@link #WRITE_CONTACTS} permission and <em>both</em> your <a
348 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
349 minSdkVersion}</a> and <a
350 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
351 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
352 grants your app this permission. If you don't need this permission, be sure your <a
353 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
354 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700355 <permission android:name="android.permission.WRITE_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700356 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700357 android:protectionLevel="dangerous"
358 android:label="@string/permlab_writeCallLog"
359 android:description="@string/permdesc_writeCallLog" />
360
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700361 <!-- Allows an application to read from the user's social stream. -->
362 <permission android:name="android.permission.READ_SOCIAL_STREAM"
363 android:permissionGroup="android.permission-group.SOCIAL_INFO"
364 android:protectionLevel="dangerous"
365 android:label="@string/permlab_readSocialStream"
366 android:description="@string/permdesc_readSocialStream" />
367
368 <!-- Allows an application to write (but not read) the user's
369 social stream data. -->
370 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
371 android:permissionGroup="android.permission-group.SOCIAL_INFO"
372 android:protectionLevel="dangerous"
373 android:label="@string/permlab_writeSocialStream"
374 android:description="@string/permdesc_writeSocialStream" />
375
376 <!-- =============================================================== -->
377 <!-- Permissions for accessing information about the device owner -->
378 <!-- =============================================================== -->
379 <eat-comment />
380
381 <!-- Used for permissions that provide access to information about the device
382 user such as profile information. This includes both reading and
383 writing of this data (which should generally be expressed as two
384 distinct permissions). -->
385 <permission-group android:name="android.permission-group.PERSONAL_INFO"
386 android:label="@string/permgrouplab_personalInfo"
387 android:icon="@drawable/perm_group_personal_info"
388 android:description="@string/permgroupdesc_personalInfo"
389 android:permissionGroupFlags="personalInfo"
390 android:priority="310" />
391
Dave Santoro43251332011-05-11 11:39:54 -0700392 <!-- Allows an application to read the user's personal profile data. -->
393 <permission android:name="android.permission.READ_PROFILE"
394 android:permissionGroup="android.permission-group.PERSONAL_INFO"
395 android:protectionLevel="dangerous"
396 android:label="@string/permlab_readProfile"
397 android:description="@string/permdesc_readProfile" />
398
399 <!-- Allows an application to write (but not read) the user's
400 personal profile data. -->
401 <permission android:name="android.permission.WRITE_PROFILE"
402 android:permissionGroup="android.permission-group.PERSONAL_INFO"
403 android:protectionLevel="dangerous"
404 android:label="@string/permlab_writeProfile"
405 android:description="@string/permdesc_writeProfile" />
406
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700407 <!-- =============================================================== -->
408 <!-- Permissions for accessing the device calendar -->
409 <!-- =============================================================== -->
410 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -0700411
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700412 <!-- Used for permissions that provide access to the device
413 calendar to create / view events.-->
414 <permission-group android:name="android.permission-group.CALENDAR"
415 android:label="@string/permgrouplab_calendar"
416 android:icon="@drawable/perm_group_calendar"
417 android:description="@string/permgroupdesc_calendar"
418 android:permissionGroupFlags="personalInfo"
419 android:priority="290" />
Dave Santoro0b61f592011-10-03 18:25:26 -0700420
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 <!-- Allows an application to read the user's calendar data. -->
422 <permission android:name="android.permission.READ_CALENDAR"
423 android:permissionGroup="android.permission-group.PERSONAL_INFO"
424 android:protectionLevel="dangerous"
425 android:label="@string/permlab_readCalendar"
426 android:description="@string/permdesc_readCalendar" />
427
428 <!-- Allows an application to write (but not read) the user's
429 calendar data. -->
430 <permission android:name="android.permission.WRITE_CALENDAR"
431 android:permissionGroup="android.permission-group.PERSONAL_INFO"
432 android:protectionLevel="dangerous"
433 android:label="@string/permlab_writeCalendar"
434 android:description="@string/permdesc_writeCalendar" />
435
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700436 <!-- =============================================================== -->
437 <!-- Permissions for accessing the user dictionary-->
438 <!-- =============================================================== -->
439 <eat-comment />
440
441 <!-- Used for permissions that provide access to the user
442 calendar to create / view events.-->
443 <permission-group android:name="android.permission-group.USER_DICTIONARY"
444 android:label="@string/permgrouplab_dictionary"
445 android:icon="@drawable/perm_group_user_dictionary"
446 android:description="@string/permgroupdesc_dictionary"
447 android:permissionGroupFlags="personalInfo"
448 android:priority="170" />
449
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700451 really only be required by an IME, or a dictionary editor like
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700452 the Settings app. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 <permission android:name="android.permission.READ_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700454 android:permissionGroup="android.permission-group.USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 android:protectionLevel="dangerous"
456 android:label="@string/permlab_readDictionary"
457 android:description="@string/permdesc_readDictionary" />
458
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700459 <!-- Used for permissions that provide access to the user
460 calendar to create / view events.-->
461 <permission-group android:name="android.permission-group.WRITE_USER_DICTIONARY"
462 android:label="@string/permgrouplab_writeDictionary"
463 android:icon="@drawable/perm_group_user_dictionary_write"
464 android:description="@string/permgroupdesc_writeDictionary"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700465 android:priority="160" />
466
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700467 <!-- Allows an application to write to the user dictionary. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700469 android:permissionGroup="android.permission-group.WRITE_USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 android:protectionLevel="normal"
471 android:label="@string/permlab_writeDictionary"
472 android:description="@string/permdesc_writeDictionary" />
473
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700474 <!-- =============================================================== -->
475 <!-- Permissions for accessing the user bookmarks -->
476 <!-- =============================================================== -->
477 <eat-comment />
478
479 <!-- Used for permissions that provide access to the user
480 bookmarks and browser history.-->
481 <permission-group android:name="android.permission-group.BOOKMARKS"
482 android:label="@string/permgrouplab_bookmarks"
483 android:icon="@drawable/perm_group_bookmarks"
484 android:description="@string/permgroupdesc_bookmarks"
485 android:permissionGroupFlags="personalInfo"
486 android:priority="300" />
487
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400488 <!-- Allows an application to read (but not write) the user's
489 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400490 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700491 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400492 android:label="@string/permlab_readHistoryBookmarks"
493 android:description="@string/permdesc_readHistoryBookmarks"
494 android:protectionLevel="dangerous" />
495
496 <!-- Allows an application to write (but not read) the user's
497 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400498 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700499 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400500 android:label="@string/permlab_writeHistoryBookmarks"
501 android:description="@string/permdesc_writeHistoryBookmarks"
502 android:protectionLevel="dangerous" />
503
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700504 <!-- =============================================================== -->
505 <!-- Permissions for setting the device alarm -->
506 <!-- =============================================================== -->
507 <eat-comment />
508
509 <!-- Used for permissions that provide access to the user voicemail box. -->
510 <permission-group android:name="android.permission-group.DEVICE_ALARMS"
511 android:label="@string/permgrouplab_deviceAlarms"
512 android:icon="@drawable/perm_group_device_alarms"
513 android:description="@string/permgroupdesc_deviceAlarms"
514 android:permissionGroupFlags="personalInfo"
515 android:priority="210" />
516
Patrick Scotta73c4b02010-09-22 08:16:53 -0400517 <!-- Allows an application to broadcast an Intent to set an alarm for the
518 user. -->
519 <permission android:name="com.android.alarm.permission.SET_ALARM"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700520 android:permissionGroup="android.permission-group.DEVICE_ALARMS"
Patrick Scotta73c4b02010-09-22 08:16:53 -0400521 android:label="@string/permlab_setAlarm"
522 android:description="@string/permdesc_setAlarm"
523 android:protectionLevel="normal" />
524
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700525 <!-- =============================================================== -->
526 <!-- Permissions for accessing the user voicemail -->
527 <!-- =============================================================== -->
528 <eat-comment />
529
530 <!-- Used for permissions that provide access to the user voicemail box. -->
531 <permission-group android:name="android.permission-group.VOICEMAIL"
532 android:label="@string/permgrouplab_voicemail"
533 android:icon="@drawable/perm_group_voicemail"
534 android:description="@string/permgroupdesc_voicemail"
535 android:permissionGroupFlags="personalInfo"
536 android:priority="280" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700537
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100538 <!-- Allows an application to add voicemails into the system. -->
539 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700540 android:permissionGroup="android.permission-group.VOICEMAIL"
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100541 android:protectionLevel="dangerous"
542 android:label="@string/permlab_addVoicemail"
543 android:description="@string/permdesc_addVoicemail" />
544
Svetoslav38228962013-01-29 01:04:35 -0800545 <!-- =============================================== -->
546 <!-- Permissions for enabling accessibility features -->
547 <!-- =============================================== -->
548
549 <!-- Used for permissions that allow requesting certain accessibility features. -->
550 <permission-group android:name="android.permission-group.ACCESSIBILITY_FEATURES"
551 android:label="@string/permgrouplab_accessibilityFeatures"
552 android:icon="@drawable/perm_group_accessibility_features"
553 android:description="@string/permgroupdesc_accessibilityFeatures"
554 android:priority="380" />
555
556 <!-- Allows an accessibility service to request touch exploration mode. -->
557 <permission android:name="android.permission.CAN_REQUEST_TOUCH_EXPLORATION_MODE"
558 android:permissionGroup="android.permission-group.ACCESSIBILITY_FEATURES"
559 android:label="@string/permlab_canRequestTouchExplorationMode"
560 android:description="@string/permdesc_canRequestTouchExplorationMode"
561 android:protectionLevel="dangerous" />
562
563 <!-- Allows an accessibility service to request enhanced web accessibility. -->
564 <permission android:name="android.permission.CAN_REQUEST_ENHANCED_WEB_ACCESSIBILITY"
565 android:permissionGroup="android.permission-group.ACCESSIBILITY_FEATURES"
566 android:label="@string/permlab_canRequestEnahncedWebAccessibility"
567 android:description="@string/permdesc_canRequestEnahncedWebAccessibility"
568 android:protectionLevel="dangerous" />
569
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 <!-- ======================================= -->
571 <!-- Permissions for accessing location info -->
572 <!-- ======================================= -->
573 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700574
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 <!-- Used for permissions that allow access to the user's current
576 location. -->
577 <permission-group android:name="android.permission-group.LOCATION"
578 android:label="@string/permgrouplab_location"
Dianne Hackborn99222d22012-05-06 16:30:15 -0700579 android:icon="@drawable/perm_group_location"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700580 android:description="@string/permgroupdesc_location"
581 android:permissionGroupFlags="personalInfo"
582 android:priority="330" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800583
Scott Main277b3522012-11-01 10:55:02 -0700584 <!-- Allows an app to access precise location from location sources such
585 as GPS, cell towers, and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800586 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
587 android:permissionGroup="android.permission-group.LOCATION"
588 android:protectionLevel="dangerous"
589 android:label="@string/permlab_accessFineLocation"
590 android:description="@string/permdesc_accessFineLocation" />
591
Scott Main277b3522012-11-01 10:55:02 -0700592 <!-- Allows an app to access approximate location derived from network location
593 sources such as cell towers and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800594 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
595 android:permissionGroup="android.permission-group.LOCATION"
596 android:protectionLevel="dangerous"
597 android:label="@string/permlab_accessCoarseLocation"
598 android:description="@string/permdesc_accessCoarseLocation" />
599
600 <!-- Allows an application to create mock location providers for testing -->
601 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
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="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 android:label="@string/permlab_accessMockLocation"
605 android:description="@string/permdesc_accessMockLocation" />
606
607 <!-- Allows an application to access extra location provider commands -->
608 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700609 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700610 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 android:label="@string/permlab_accessLocationExtraCommands"
612 android:description="@string/permdesc_accessLocationExtraCommands" />
613
Mike Lockwood275555c2009-05-01 11:30:34 -0400614 <!-- Allows an application to install a location provider into the Location Manager -->
615 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborne639da72012-02-21 15:11:13 -0800616 android:protectionLevel="signature|system"
Mike Lockwood275555c2009-05-01 11:30:34 -0400617 android:label="@string/permlab_installLocationProvider"
618 android:description="@string/permdesc_installLocationProvider" />
619
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700620 <!-- Allows an application to use location features in hardware,
621 such as the geofencing api
622 Protected by signature|system protection level -->
623 <permission android:name="android.permission.LOCATION_HARDWARE"
624 android:permissionGroup="android.permission-group.LOCATION"
625 android:protectionLevel="signature|system" />
626 <uses-permission android:name="android.permission.LOCATION_HARDWARE"/>
627
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 <!-- ======================================= -->
629 <!-- Permissions for accessing networks -->
630 <!-- ======================================= -->
631 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700632
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633 <!-- Used for permissions that provide access to networking services. The
634 main permission here is internet access, but this is also an
635 appropriate group for accessing or modifying any network configuration
636 or other related network operations. -->
637 <permission-group android:name="android.permission-group.NETWORK"
638 android:label="@string/permgrouplab_network"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700639 android:icon="@drawable/perm_group_network"
640 android:description="@string/permgroupdesc_network"
641 android:priority="270" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642
643 <!-- Allows applications to open network sockets. -->
644 <permission android:name="android.permission.INTERNET"
645 android:permissionGroup="android.permission-group.NETWORK"
646 android:protectionLevel="dangerous"
647 android:description="@string/permdesc_createNetworkSockets"
648 android:label="@string/permlab_createNetworkSockets" />
649
650 <!-- Allows applications to access information about networks -->
651 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
652 android:permissionGroup="android.permission-group.NETWORK"
653 android:protectionLevel="normal"
654 android:description="@string/permdesc_accessNetworkState"
655 android:label="@string/permlab_accessNetworkState" />
656
657 <!-- Allows applications to access information about Wi-Fi networks -->
658 <permission android:name="android.permission.ACCESS_WIFI_STATE"
659 android:permissionGroup="android.permission-group.NETWORK"
660 android:protectionLevel="normal"
661 android:description="@string/permdesc_accessWifiState"
662 android:label="@string/permlab_accessWifiState" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800663
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700664 <!-- Allows applications to change Wi-Fi connectivity state -->
665 <permission android:name="android.permission.CHANGE_WIFI_STATE"
666 android:permissionGroup="android.permission-group.NETWORK"
667 android:protectionLevel="dangerous"
668 android:description="@string/permdesc_changeWifiState"
669 android:label="@string/permlab_changeWifiState" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700670
Robert Greenwalt8588e472011-11-08 10:12:25 -0800671 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +0900672 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
673 android:permissionGroup="android.permission-group.NETWORK"
674 android:protectionLevel="normal"
675 android:description="@string/permdesc_accessWimaxState"
676 android:label="@string/permlab_accessWimaxState" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700677
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700678 <!-- @hide -->
679 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700680 android:permissionGroup="android.permission-group.NETWORK"
681 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700682 android:description="@string/permdesc_changeWimaxState"
683 android:label="@string/permlab_changeWimaxState" />
684
685 <!-- ======================================= -->
686 <!-- Permissions for short range, peripheral networks -->
687 <!-- ======================================= -->
688 <eat-comment />
689
690 <!-- Used for permissions that provide access to other devices through Bluetooth.-->
691 <permission-group android:name="android.permission-group.BLUETOOTH_NETWORK"
692 android:label="@string/permgrouplab_bluetoothNetwork"
693 android:icon="@drawable/perm_group_bluetooth"
694 android:description="@string/permgroupdesc_bluetoothNetwork"
695 android:priority="260" />
696
697 <!-- Allows applications to connect to paired bluetooth devices -->
698 <permission android:name="android.permission.BLUETOOTH"
699 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
700 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 android:description="@string/permdesc_bluetooth"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700702 android:label="@string/permlab_bluetooth" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800703
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700704 <!-- Allows applications to discover and pair bluetooth devices -->
705 <permission android:name="android.permission.BLUETOOTH_ADMIN"
706 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
707 android:protectionLevel="dangerous"
708 android:description="@string/permdesc_bluetoothAdmin"
709 android:label="@string/permlab_bluetoothAdmin" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800710
Matthew Xiefca9d632012-10-04 12:25:28 -0700711 <!-- Allows bluetooth stack to access files
712 @hide This should only be used by Bluetooth apk.
713 -->
714 <permission android:name="android.permission.BLUETOOTH_STACK"
715 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
716 android:protectionLevel="signature" />
717
Nick Pelly1df862a2011-02-15 13:34:38 -0800718 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700719 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700720 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700721 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700722 android:description="@string/permdesc_nfc"
723 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700724
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700725 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700726 @hide -->
727 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
728 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800729 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700730
Haoyu Baidb3c8672012-06-20 14:29:57 -0700731 <!-- @hide -->
732 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
733 android:permissionGroup="android.permission-group.NETWORK"
734 android:protectionLevel="signature|system" />
735
Doug Zongkerb616f0c2013-01-29 09:05:21 -0800736 <!-- Allows access to the loop radio (Android@Home mesh network) device.
737 @hide -->
738 <permission android:name="android.permission.LOOP_RADIO"
739 android:permissionGroup="android.permission-group.NETWORK"
740 android:protectionLevel="signature|system" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800741
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 <!-- ================================== -->
743 <!-- Permissions for accessing accounts -->
744 <!-- ================================== -->
745 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700746
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700747 <!-- Permissions for direct access to the accounts managed
748 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 <permission-group android:name="android.permission-group.ACCOUNTS"
750 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700751 android:icon="@drawable/perm_group_accounts"
752 android:description="@string/permgroupdesc_accounts"
753 android:permissionGroupFlags="personalInfo"
754 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755
756 <!-- Allows access to the list of accounts in the Accounts Service -->
757 <permission android:name="android.permission.GET_ACCOUNTS"
758 android:permissionGroup="android.permission-group.ACCOUNTS"
759 android:protectionLevel="normal"
760 android:description="@string/permdesc_getAccounts"
761 android:label="@string/permlab_getAccounts" />
762
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700763 <!-- Allows an application to act as an AccountAuthenticator for
764 the AccountManager -->
765 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
766 android:permissionGroup="android.permission-group.ACCOUNTS"
767 android:protectionLevel="dangerous"
768 android:label="@string/permlab_authenticateAccounts"
769 android:description="@string/permdesc_authenticateAccounts" />
770
771 <!-- Allows an application to request authtokens from the AccountManager -->
772 <permission android:name="android.permission.USE_CREDENTIALS"
773 android:permissionGroup="android.permission-group.ACCOUNTS"
774 android:protectionLevel="dangerous"
775 android:label="@string/permlab_useCredentials"
776 android:description="@string/permdesc_useCredentials" />
777
778 <!-- Allows an application to manage the list of accounts in the AccountManager -->
779 <permission android:name="android.permission.MANAGE_ACCOUNTS"
780 android:permissionGroup="android.permission-group.ACCOUNTS"
781 android:protectionLevel="dangerous"
782 android:label="@string/permlab_manageAccounts"
783 android:description="@string/permdesc_manageAccounts" />
784
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700785 <!-- Allows applications to call into AccountAuthenticators. Only
786 the system can get this permission. -->
787 <permission android:name="android.permission.ACCOUNT_MANAGER"
788 android:permissionGroup="android.permission-group.ACCOUNTS"
789 android:protectionLevel="signature"
790 android:description="@string/permdesc_accountManagerService"
791 android:label="@string/permlab_accountManagerService" />
792
793 <!-- ================================== -->
794 <!-- Permissions for accessing hardware that may effect battery life-->
795 <!-- ================================== -->
796 <eat-comment />
797
798 <!-- Used for permissions that provide direct access to the hardware on
799 the device that has an effect on battery life. This includes vibrator,
800 flashlight, etc. -->
801
802 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
803 android:label="@string/permgrouplab_affectsBattery"
804 android:icon="@drawable/perm_group_affects_battery"
805 android:description="@string/permgroupdesc_affectsBattery"
806 android:priority="180" />
807
808 <!-- Allows applications to enter Wi-Fi Multicast mode -->
809 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
810 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
811 android:protectionLevel="dangerous"
812 android:description="@string/permdesc_changeWifiMulticastState"
813 android:label="@string/permlab_changeWifiMulticastState" />
814
815 <!-- Allows access to the vibrator -->
816 <permission android:name="android.permission.VIBRATE"
817 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
818 android:protectionLevel="normal"
819 android:label="@string/permlab_vibrate"
820 android:description="@string/permdesc_vibrate" />
821
822 <!-- Allows access to the flashlight -->
823 <permission android:name="android.permission.FLASHLIGHT"
824 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
825 android:protectionLevel="normal"
826 android:label="@string/permlab_flashlight"
827 android:description="@string/permdesc_flashlight" />
828
829 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
830 from dimming -->
831 <permission android:name="android.permission.WAKE_LOCK"
832 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
833 android:protectionLevel="normal"
834 android:label="@string/permlab_wakeLock"
835 android:description="@string/permdesc_wakeLock" />
836
837 <!-- ==================================================== -->
838 <!-- Permissions related to changing audio settings -->
839 <!-- ==================================================== -->
840
841 <!-- Used for permissions that provide direct access to speaker settings
842 the device. -->
843 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
844 android:label="@string/permgrouplab_audioSettings"
845 android:icon="@drawable/perm_group_audio_settings"
846 android:description="@string/permgroupdesc_audioSettings"
847 android:priority="130" />
848
849 <!-- Allows an application to modify global audio settings -->
850 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
851 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
852 android:protectionLevel="normal"
853 android:label="@string/permlab_modifyAudioSettings"
854 android:description="@string/permdesc_modifyAudioSettings" />
855
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 <!-- ================================== -->
857 <!-- Permissions for accessing hardware -->
858 <!-- ================================== -->
859 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700860
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861 <!-- Used for permissions that provide direct access to the hardware on
862 the device. This includes audio, the camera, vibrator, etc. -->
863 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
864 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700865 android:description="@string/permgroupdesc_hardwareControls"
866 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867
Mike Lockwood02eb8742011-02-27 09:10:37 -0800868 <!-- Allows an application to manage preferences and permissions for USB devices
869 @hide -->
870 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400871 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800872 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800873 android:label="@string/permlab_manageUsb"
874 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400875
Mike Lockwood10bc1112011-01-10 08:24:08 -0500876 <!-- Allows an application to access the MTP USB kernel driver.
877 For use only by the device side MTP implementation.
878 @hide -->
879 <permission android:name="android.permission.ACCESS_MTP"
880 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800881 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500882 android:label="@string/permlab_accessMtp"
883 android:description="@string/permdesc_accessMtp" />
884
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
886 <permission android:name="android.permission.HARDWARE_TEST"
887 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
888 android:protectionLevel="signature"
889 android:label="@string/permlab_hardware_test"
890 android:description="@string/permdesc_hardware_test" />
891
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500892 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
893 @hide -->
894 <permission android:name="android.permission.NET_ADMIN"
895 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
896 android:protectionLevel="signature" />
897
Jeff Sharkey098d5802012-04-26 17:30:34 -0700898 <!-- Allows registration for remote audio playback. @hide -->
899 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
900 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
901 android:protectionLevel="signature" />
902
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700904 <!-- Permissions associated with audio capture -->
905 <!-- =========================================== -->
906 <eat-comment />
907
908 <!-- Used for permissions that are associated with accessing
909 microphone audio from the device. Note that phone calls also capture audio
910 but are in a separate (more visible) permission group. -->
911 <permission-group android:name="android.permission-group.MICROPHONE"
912 android:label="@string/permgrouplab_microphone"
913 android:icon="@drawable/perm_group_microphone"
914 android:description="@string/permgroupdesc_microphone"
915 android:permissionGroupFlags="personalInfo"
916 android:priority="340" />
917
918 <!-- Allows an application to record audio -->
919 <permission android:name="android.permission.RECORD_AUDIO"
920 android:permissionGroup="android.permission-group.MICROPHONE"
921 android:protectionLevel="dangerous"
922 android:label="@string/permlab_recordAudio" />
923
924
925 <!-- =========================================== -->
926 <!-- Permissions associated with camera and image capture -->
927 <!-- =========================================== -->
928 <eat-comment />
929
930 <!-- Used for permissions that are associated with accessing
931 camera or capturing images/video from the device. -->
932 <permission-group android:name="android.permission-group.CAMERA"
933 android:label="@string/permgrouplab_camera"
934 android:icon="@drawable/perm_group_camera"
935 android:description="@string/permgroupdesc_camera"
936 android:permissionGroupFlags="personalInfo"
937 android:priority="350" />
938
939 <!-- Required to be able to access the camera device.
940 <p>This will automatically enforce the <a
941 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
942 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
943 If you do not require all camera features or can properly operate if a camera
944 is not available, then you must modify your manifest as appropriate in order to
945 install on devices that don't support all camera features.</p> -->
946 <permission android:name="android.permission.CAMERA"
947 android:permissionGroup="android.permission-group.CAMERA"
948 android:protectionLevel="dangerous"
949 android:label="@string/permlab_camera"
950 android:description="@string/permdesc_camera" />
951
952 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 <!-- Permissions associated with telephony state -->
954 <!-- =========================================== -->
955 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700956
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800957 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700958 telephony state: placing calls, intercepting outgoing calls, reading
959 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960 <permission-group android:name="android.permission-group.PHONE_CALLS"
961 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700962 android:icon="@drawable/perm_group_phone_calls"
963 android:description="@string/permgroupdesc_phoneCalls"
964 android:permissionGroupFlags="personalInfo"
965 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966
967 <!-- Allows an application to monitor, modify, or abort outgoing
968 calls. -->
969 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
970 android:permissionGroup="android.permission-group.PHONE_CALLS"
971 android:protectionLevel="dangerous"
972 android:label="@string/permlab_processOutgoingCalls"
973 android:description="@string/permdesc_processOutgoingCalls" />
974
975 <!-- Allows modification of the telephony state - power on, mmi, etc.
976 Does not include placing calls. -->
977 <permission android:name="android.permission.MODIFY_PHONE_STATE"
978 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800979 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980 android:label="@string/permlab_modifyPhoneState"
981 android:description="@string/permdesc_modifyPhoneState" />
982
Scott Main2681faa2012-11-01 12:18:31 -0700983 <!-- Allows read only access to phone state.
984 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
985 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
986 minSdkVersion}</a> and <a
987 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
988 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
989 grants your app this permission. If you don't need this permission, be sure your <a
990 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
991 targetSdkVersion}</a> is 4 or higher. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992 <permission android:name="android.permission.READ_PHONE_STATE"
993 android:permissionGroup="android.permission-group.PHONE_CALLS"
994 android:protectionLevel="dangerous"
995 android:label="@string/permlab_readPhoneState"
996 android:description="@string/permdesc_readPhoneState" />
997
Jake Hamby463f2212011-07-21 17:55:53 -0700998 <!-- Allows read access to privileged phone state.
999 @hide Used internally. -->
1000 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
1001 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001002 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -07001003
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001004 <!-- Allows an application to initiate a phone call without going through
1005 the Dialer user interface for the user to confirm the call
1006 being placed. -->
1007 <permission android:name="android.permission.CALL_PHONE"
1008 android:permissionGroup="android.permission-group.PHONE_CALLS"
1009 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001010 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001011 android:label="@string/permlab_callPhone"
1012 android:description="@string/permdesc_callPhone" />
1013
1014 <!-- Allows an application to use SIP service -->
1015 <permission android:name="android.permission.USE_SIP"
1016 android:permissionGroup="android.permission-group.PHONE_CALLS"
1017 android:protectionLevel="dangerous"
1018 android:description="@string/permdesc_use_sip"
1019 android:label="@string/permlab_use_sip" />
1020
San Mehat29b57e62009-04-23 09:18:32 -07001021 <!-- ================================== -->
1022 <!-- Permissions for sdcard interaction -->
1023 <!-- ================================== -->
1024 <eat-comment />
1025
1026 <!-- Group of permissions that are related to SD card access. -->
1027 <permission-group android:name="android.permission-group.STORAGE"
1028 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001029 android:icon="@drawable/perm_group_storage"
1030 android:description="@string/permgroupdesc_storage"
1031 android:permissionGroupFlags="personalInfo"
1032 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -07001033
Scott Main2681faa2012-11-01 12:18:31 -07001034 <!-- Allows an application to read from external storage.
1035 <p>Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly
1036 granted this permission.</p>
1037 <p>Currently, this permission is not enforced and all apps still have access to read from
1038 external storage without this permission. That will change in a future release and apps
1039 will require this permission to read from external storage. So if your
1040 app reads from the external storage, you should add this permission to your app now
1041 to ensure that it continues to work on future versions of Android.</p>
1042 <p>You can test your app with the permission enforced by either running your app on the
1043 Android Emulator when running Android 4.1 or higher, or enabling <em>Protect USB
1044 storage</em> under Developer options in the Settings app on a device running Android 4.1 or
1045 higher.</p>
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.-->
Dianne Hackborn79245122012-03-12 10:51:26 -07001054 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001055 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -07001056 android:label="@string/permlab_sdcardRead"
1057 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -07001058 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -07001059
Scott Main2681faa2012-11-01 12:18:31 -07001060 <!-- Allows an application to write to external storage.
1061 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1062 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1063 minSdkVersion}</a> and <a
1064 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1065 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1066 grants your app this permission. If you don't need this permission, be sure your <a
1067 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1068 targetSdkVersion}</a> is 4 or higher. -->
San Mehat5a3a77d2009-06-01 09:25:28 -07001069 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -07001070 android:permissionGroup="android.permission-group.STORAGE"
1071 android:label="@string/permlab_sdcardWrite"
1072 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -07001073 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -07001074
Mike Lockwood1e23db42011-04-22 07:05:21 -07001075 <!-- Allows an application to write to internal media storage
1076 @hide -->
1077 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
1078 android:permissionGroup="android.permission-group.STORAGE"
1079 android:label="@string/permlab_mediaStorageWrite"
1080 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -08001081 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -07001082
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001083 <!-- ================================== -->
1084 <!-- Permissions for screenlock -->
1085 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001086 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001087
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001088 <!-- Group of permissions that are related to the screenlock. -->
1089 <permission-group android:name="android.permission-group.SCREENLOCK"
Dianne Hackborn3ad27692013-03-18 10:53:09 -07001090 android:label="@string/permgrouplab_screenlock"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001091 android:icon="@drawable/perm_group_screenlock"
1092 android:permissionGroupFlags="personalInfo"
Dianne Hackborn3ad27692013-03-18 10:53:09 -07001093 android:description="@string/permgroupdesc_screenlock"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001094 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001096 <!-- Allows applications to disable the keyguard -->
1097 <permission android:name="android.permission.DISABLE_KEYGUARD"
1098 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001099 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001100 android:description="@string/permdesc_disableKeyguard"
1101 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001102
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001103 <!-- ================================== -->
1104 <!-- Permissions to access other installed applications -->
1105 <!-- ================================== -->
1106 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001108 <!-- Group of permissions that are related to the other applications
1109 installed on the system. Examples include such as listing
1110 running apps, or killing background processes. -->
1111 <permission-group android:name="android.permission-group.APP_INFO"
1112 android:label="@string/permgrouplab_appInfo"
1113 android:icon="@drawable/perm_group_app_info"
1114 android:description="@string/permgroupdesc_appInfo"
1115 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116
1117 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -07001118 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001119 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001120 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121 android:protectionLevel="dangerous"
1122 android:label="@string/permlab_getTasks"
1123 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -07001124 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -07001125 across the users on the device, using singleton services and
1126 user-targeted broadcasts. This permission is not available to
1127 third party applications. -->
1128 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
1129 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1130 android:protectionLevel="signature|system|development"
1131 android:label="@string/permlab_interactAcrossUsers"
1132 android:description="@string/permdesc_interactAcrossUsers" />
1133
1134 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
1135 that removes restrictions on where broadcasts can be sent and allows other
1136 types of interactions. -->
1137 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1138 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1139 android:protectionLevel="signature"
1140 android:label="@string/permlab_interactAcrossUsersFull"
1141 android:description="@string/permdesc_interactAcrossUsersFull" />
1142
Dianne Hackborn8832c182012-09-17 17:20:24 -07001143 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001144 users on the device. This permission is not available to
1145 third party applications. -->
1146 <permission android:name="android.permission.MANAGE_USERS"
1147 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001148 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001149 android:label="@string/permlab_manageUsers"
1150 android:description="@string/permdesc_manageUsers" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001151
Dianne Hackborn8238e712012-04-24 11:15:40 -07001152 <!-- Allows an application to get full detailed information about
1153 recently running tasks, with full fidelity to the real state.
1154 @hide -->
1155 <permission android:name="android.permission.GET_DETAILED_TASKS"
1156 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1157 android:protectionLevel="signature"
1158 android:label="@string/permlab_getDetailedTasks"
1159 android:description="@string/permdesc_getDetailedTasks" />
1160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161 <!-- Allows an application to change the Z-order of tasks -->
1162 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001163 android:permissionGroup="android.permission-group.APP_INFO"
1164 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 android:label="@string/permlab_reorderTasks"
1166 android:description="@string/permdesc_reorderTasks" />
1167
Dianne Hackborn24a12102011-07-29 15:52:05 -07001168 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001169 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001170 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001171 android:protectionLevel="signature"
1172 android:label="@string/permlab_removeTasks"
1173 android:description="@string/permdesc_removeTasks" />
1174
Jeff Sharkey35be7562012-04-18 19:16:15 -07001175 <!-- Allows an application to start any activity, regardless of permission
1176 protection or exported state. @hide -->
1177 <permission android:name="android.permission.START_ANY_ACTIVITY"
1178 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1179 android:protectionLevel="signature"
1180 android:label="@string/permlab_startAnyActivity"
1181 android:description="@string/permdesc_startAnyActivity" />
1182
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001183 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1184 API is no longer supported. -->
1185 <permission android:name="android.permission.RESTART_PACKAGES"
1186 android:permissionGroup="android.permission-group.APP_INFO"
1187 android:protectionLevel="normal"
1188 android:label="@string/permlab_killBackgroundProcesses"
1189 android:description="@string/permdesc_killBackgroundProcesses" />
1190
1191 <!-- Allows an application to call
1192 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1193 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1194 android:permissionGroup="android.permission-group.APP_INFO"
1195 android:protectionLevel="normal"
1196 android:label="@string/permlab_killBackgroundProcesses"
1197 android:description="@string/permdesc_killBackgroundProcesses" />
1198
1199 <!-- ================================== -->
1200 <!-- Permissions affecting the display of other applications -->
1201 <!-- ================================== -->
1202 <eat-comment />
1203
1204 <!-- Group of permissions that allow manipulation of how
1205 another application displays UI to the user. -->
1206 <permission-group android:name="android.permission-group.DISPLAY"
1207 android:label="@string/permgrouplab_display"
1208 android:icon="@drawable/perm_group_display"
1209 android:description="@string/permgroupdesc_display"
1210 android:priority="190"/>
1211
1212 <!-- Allows an application to open windows using the type
1213 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1214 shown on top of all other applications. Very few applications
1215 should use this permission; these windows are intended for
1216 system-level interaction with the user. -->
1217 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1218 android:permissionGroup="android.permission-group.DISPLAY"
1219 android:protectionLevel="dangerous"
1220 android:label="@string/permlab_systemAlertWindow"
1221 android:description="@string/permdesc_systemAlertWindow" />
1222
1223 <!-- ================================== -->
1224 <!-- Permissions affecting the system wallpaper -->
1225 <!-- ================================== -->
1226 <eat-comment />
1227
1228 <!-- Group of permissions that allow manipulation of how
1229 another application displays UI to the user. -->
1230 <permission-group android:name="android.permission-group.WALLPAPER"
1231 android:label="@string/permgrouplab_wallpaper"
1232 android:icon="@drawable/perm_group_wallpaper"
1233 android:description="@string/permgroupdesc_wallpaper"
1234 android:priority="150" />
1235
1236 <!-- Allows applications to set the wallpaper -->
1237 <permission android:name="android.permission.SET_WALLPAPER"
1238 android:permissionGroup="android.permission-group.WALLPAPER"
1239 android:protectionLevel="normal"
1240 android:label="@string/permlab_setWallpaper"
1241 android:description="@string/permdesc_setWallpaper" />
1242
1243 <!-- Allows applications to set the wallpaper hints -->
1244 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1245 android:permissionGroup="android.permission-group.WALLPAPER"
1246 android:protectionLevel="normal"
1247 android:label="@string/permlab_setWallpaperHints"
1248 android:description="@string/permdesc_setWallpaperHints" />
1249
1250 <!-- ============================================ -->
1251 <!-- Permissions for changing the system clock -->
1252 <!-- ============================================ -->
1253 <eat-comment />
1254
1255 <!-- Group of permissions that are related to system clock. -->
1256 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1257 android:label="@string/permgrouplab_systemClock"
1258 android:icon="@drawable/perm_group_system_clock"
1259 android:description="@string/permgroupdesc_systemClock"
1260 android:priority="140" />
1261
1262 <!-- Allows applications to set the system time -->
1263 <permission android:name="android.permission.SET_TIME"
1264 android:protectionLevel="signature|system"
1265 android:label="@string/permlab_setTime"
1266 android:description="@string/permdesc_setTime" />
1267
1268 <!-- Allows applications to set the system time zone -->
1269 <permission android:name="android.permission.SET_TIME_ZONE"
1270 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1271 android:protectionLevel="normal"
1272 android:label="@string/permlab_setTimeZone"
1273 android:description="@string/permdesc_setTimeZone" />
1274
1275 <!-- ==================================================== -->
1276 <!-- Permissions related to changing status bar -->
1277 <!-- ==================================================== -->
1278
1279 <!-- Used for permissions that change the status bar -->
1280 <permission-group android:name="android.permission-group.STATUS_BAR"
1281 android:label="@string/permgrouplab_statusBar"
1282 android:icon="@drawable/perm_group_status_bar"
1283 android:description="@string/permgroupdesc_statusBar"
1284 android:priority="110" />
1285
1286 <!-- Allows an application to expand or collapse the status bar. -->
1287 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1288 android:permissionGroup="android.permission-group.STATUS_BAR"
1289 android:protectionLevel="normal"
1290 android:label="@string/permlab_expandStatusBar"
1291 android:description="@string/permdesc_expandStatusBar" />
1292
1293 <!-- ==================================================== -->
1294 <!-- Permissions related to accessing sync settings -->
1295 <!-- ==================================================== -->
1296
1297 <!-- Used for permissions that access the sync settings or sync
1298 related information. -->
1299 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1300 android:label="@string/permgrouplab_syncSettings"
1301 android:icon="@drawable/perm_group_sync_settings"
1302 android:description="@string/permgroupdesc_syncSettings"
1303 android:priority="120" />
1304
1305 <!-- Allows applications to read the sync settings -->
1306 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1307 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1308 android:protectionLevel="normal"
1309 android:description="@string/permdesc_readSyncSettings"
1310 android:label="@string/permlab_readSyncSettings" />
1311
1312 <!-- Allows applications to write the sync settings -->
1313 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1314 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1315 android:protectionLevel="normal"
1316 android:description="@string/permdesc_writeSyncSettings"
1317 android:label="@string/permlab_writeSyncSettings" />
1318
1319 <!-- Allows applications to read the sync stats -->
1320 <permission android:name="android.permission.READ_SYNC_STATS"
1321 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1322 android:protectionLevel="normal"
1323 android:description="@string/permdesc_readSyncStats"
1324 android:label="@string/permlab_readSyncStats" />
1325
1326
1327 <!-- ============================================ -->
1328 <!-- Permissions for low-level system interaction -->
1329 <!-- ============================================ -->
1330 <eat-comment />
1331
1332 <!-- Group of permissions that are related to system APIs. Many
1333 of these are not permissions the user will be expected to understand,
1334 and such permissions should generally be marked as "normal" protection
1335 level so they don't get displayed. This can also, however, be used
1336 for miscellaneous features that provide access to the operating system,
1337 such as writing the global system settings. -->
1338 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1339 android:label="@string/permgrouplab_systemTools"
1340 android:icon="@drawable/perm_group_system_tools"
1341 android:description="@string/permgroupdesc_systemTools"
1342 android:priority="100" />
1343
1344 <!-- @hide Change the screen compatibility mode of applications -->
1345 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1346 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1347 android:protectionLevel="signature"
1348 android:label="@string/permlab_setScreenCompatibility"
1349 android:description="@string/permdesc_setScreenCompatibility" />
1350
1351 <!-- Allows an application to access all multi-user external storage @hide -->
1352 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1353 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1354 android:label="@string/permlab_sdcardAccessAll"
1355 android:description="@string/permdesc_sdcardAccessAll"
1356 android:protectionLevel="signature" />
1357
1358 <!-- Allows an application to modify the current configuration, such
1359 as locale. -->
1360 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001361 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001362 android:protectionLevel="signature|system|development"
1363 android:label="@string/permlab_changeConfiguration"
1364 android:description="@string/permdesc_changeConfiguration" />
1365
1366 <!-- Allows an application to read or write the system settings. -->
1367 <permission android:name="android.permission.WRITE_SETTINGS"
1368 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1369 android:protectionLevel="normal"
1370 android:label="@string/permlab_writeSettings"
1371 android:description="@string/permdesc_writeSettings" />
1372
1373 <!-- Allows an application to modify the Google service map. -->
1374 <permission android:name="android.permission.WRITE_GSERVICES"
1375 android:protectionLevel="signature|system"
1376 android:label="@string/permlab_writeGservices"
1377 android:description="@string/permdesc_writeGservices" />
1378
Dianne Hackborn03abb812010-01-04 18:43:19 -08001379 <!-- Allows an application to call
1380 {@link android.app.ActivityManager#forceStopPackage}.
1381 @hide -->
1382 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1383 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1384 android:protectionLevel="signature"
1385 android:label="@string/permlab_forceStopPackages"
1386 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387
Dianne Hackborn24a12102011-07-29 15:52:05 -07001388 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001389 An active window is the window that has fired an accessibility event. -->
1390 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1391 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001392 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001393 android:label="@string/permlab_retrieve_window_content"
1394 android:description="@string/permdesc_retrieve_window_content" />
1395
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001396 <!-- Modify the global animation scaling factor. -->
1397 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1398 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001399 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400 android:label="@string/permlab_setAnimationScale"
1401 android:description="@string/permdesc_setAnimationScale" />
1402
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001403 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001404 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001406 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001407 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 android:label="@string/permlab_persistentActivity"
1409 android:description="@string/permdesc_persistentActivity" />
1410
1411 <!-- Allows an application to find out the space used by any package. -->
1412 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1413 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1414 android:protectionLevel="normal"
1415 android:label="@string/permlab_getPackageSize"
1416 android:description="@string/permdesc_getPackageSize" />
1417
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001418 <!-- @deprecated No longer useful, see
1419 {@link android.content.pm.PackageManager#addPackageToPreferred}
1420 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001421 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1422 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001423 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 android:label="@string/permlab_setPreferredApplications"
1425 android:description="@string/permdesc_setPreferredApplications" />
1426
1427 <!-- Allows an application to receive the
1428 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1429 broadcast after the system finishes booting. If you don't
1430 request this permission, you will not receive the broadcast at
1431 that time. Though holding this permission does not have any
1432 security implications, it can have a negative impact on the
1433 user experience by increasing the amount of time it takes the
1434 system to start and allowing applications to have themselves
1435 running without the user being aware of them. As such, you must
1436 explicitly declare your use of this facility to make that visible
1437 to the user. -->
1438 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001439 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001440 android:protectionLevel="normal"
1441 android:label="@string/permlab_receiveBootCompleted"
1442 android:description="@string/permdesc_receiveBootCompleted" />
1443
1444 <!-- Allows an application to broadcast sticky intents. These are
1445 broadcasts whose data is held by the system after being finished,
1446 so that clients can quickly retrieve that data without having
1447 to wait for the next broadcast. -->
1448 <permission android:name="android.permission.BROADCAST_STICKY"
1449 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1450 android:protectionLevel="normal"
1451 android:label="@string/permlab_broadcastSticky"
1452 android:description="@string/permdesc_broadcastSticky" />
1453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 <!-- Allows mounting and unmounting file systems for removable storage. -->
1455 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
1456 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001457 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001458 android:label="@string/permlab_mount_unmount_filesystems"
1459 android:description="@string/permdesc_mount_unmount_filesystems" />
1460
1461 <!-- Allows formatting file systems for removable storage. -->
1462 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1463 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001464 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001465 android:label="@string/permlab_mount_format_filesystems"
1466 android:description="@string/permdesc_mount_format_filesystems" />
1467
San Mehat02735bc2010-01-26 15:18:08 -08001468 <!-- Allows access to ASEC non-destructive API calls
1469 @hide -->
1470 <permission android:name="android.permission.ASEC_ACCESS"
1471 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001472 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001473 android:label="@string/permlab_asec_access"
1474 android:description="@string/permdesc_asec_access" />
1475
1476 <!-- Allows creation of ASEC volumes
1477 @hide -->
1478 <permission android:name="android.permission.ASEC_CREATE"
1479 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001480 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001481 android:label="@string/permlab_asec_create"
1482 android:description="@string/permdesc_asec_create" />
1483
1484 <!-- Allows destruction of ASEC volumes
1485 @hide -->
1486 <permission android:name="android.permission.ASEC_DESTROY"
1487 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001488 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001489 android:label="@string/permlab_asec_destroy"
1490 android:description="@string/permdesc_asec_destroy" />
1491
1492 <!-- Allows mount / unmount of ASEC volumes
1493 @hide -->
1494 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1495 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001496 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001497 android:label="@string/permlab_asec_mount_unmount"
1498 android:description="@string/permdesc_asec_mount_unmount" />
1499
1500 <!-- Allows rename of ASEC volumes
1501 @hide -->
1502 <permission android:name="android.permission.ASEC_RENAME"
1503 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001504 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001505 android:label="@string/permlab_asec_rename"
1506 android:description="@string/permdesc_asec_rename" />
1507
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001508 <!-- Allows applications to write the apn settings -->
1509 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1510 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001511 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 android:description="@string/permdesc_writeApnSettings"
1513 android:label="@string/permlab_writeApnSettings" />
1514
Fred Quintana60307342009-03-24 22:48:12 -07001515 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001516 ContentProvider. -->
1517 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1518 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1519 android:label="@string/permlab_subscribedFeedsRead"
1520 android:description="@string/permdesc_subscribedFeedsRead"
1521 android:protectionLevel="normal" />
1522 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1523 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1524 android:label="@string/permlab_subscribedFeedsWrite"
1525 android:description="@string/permdesc_subscribedFeedsWrite"
1526 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001527
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 <!-- Allows applications to change network connectivity state -->
1529 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001530 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001531 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001532 android:description="@string/permdesc_changeNetworkState"
1533 android:label="@string/permlab_changeNetworkState" />
1534
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 <!-- Allows an application to clear the caches of all installed
1536 applications on the device. -->
1537 <permission android:name="android.permission.CLEAR_APP_CACHE"
1538 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1539 android:protectionLevel="dangerous"
1540 android:label="@string/permlab_clearAppCache"
1541 android:description="@string/permdesc_clearAppCache" />
1542
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001543 <!-- Allows an application to use any media decoder when decoding for playback
1544 @hide -->
1545 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001546 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001547 android:label="@string/permlab_anyCodecForPlayback"
1548 android:description="@string/permdesc_anyCodecForPlayback" />
1549
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001550 <!-- ========================================= -->
1551 <!-- Permissions for special development tools -->
1552 <!-- ========================================= -->
1553 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001554
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 <!-- Group of permissions that are related to development features. These
1556 are not permissions that should appear in normal applications; they
1557 protect APIs that are intended only to be used for development
1558 purposes. -->
1559 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1560 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001561 android:description="@string/permgroupdesc_developmentTools"
1562 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001563
Dianne Hackborne639da72012-02-21 15:11:13 -08001564 <!-- Allows an application to read or write the secure system settings. -->
1565 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1566 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1567 android:protectionLevel="signature|system|development"
1568 android:label="@string/permlab_writeSecureSettings"
1569 android:description="@string/permdesc_writeSecureSettings" />
1570
1571 <!-- Allows an application to retrieve state dump information from system
1572 services. -->
1573 <permission android:name="android.permission.DUMP"
1574 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1575 android:protectionLevel="signature|system|development"
1576 android:label="@string/permlab_dump"
1577 android:description="@string/permdesc_dump" />
1578
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001579 <!-- Allows an application to read the low-level system log files.
1580 Log entries can contain the user's private information,
1581 which is why this permission is not available to normal apps. -->
1582 <permission android:name="android.permission.READ_LOGS"
1583 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1584 android:protectionLevel="signature|system|development"
1585 android:label="@string/permlab_readLogs"
1586 android:description="@string/permdesc_readLogs" />
1587
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001588 <!-- Configure an application for debugging. -->
1589 <permission android:name="android.permission.SET_DEBUG_APP"
1590 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001591 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001592 android:label="@string/permlab_setDebugApp"
1593 android:description="@string/permdesc_setDebugApp" />
1594
1595 <!-- Allows an application to set the maximum number of (not needed)
1596 application processes that can be running. -->
1597 <permission android:name="android.permission.SET_PROCESS_LIMIT"
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_setProcessLimit"
1601 android:description="@string/permdesc_setProcessLimit" />
1602
1603 <!-- Allows an application to control whether activities are immediately
1604 finished when put in the background. -->
1605 <permission android:name="android.permission.SET_ALWAYS_FINISH"
1606 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001607 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001608 android:label="@string/permlab_setAlwaysFinish"
1609 android:description="@string/permdesc_setAlwaysFinish" />
1610
1611 <!-- Allow an application to request that a signal be sent to all persistent processes -->
1612 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1613 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001614 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001615 android:label="@string/permlab_signalPersistentProcesses"
1616 android:description="@string/permdesc_signalPersistentProcesses" />
1617
1618 <!-- ==================================== -->
1619 <!-- Private (signature-only) permissions -->
1620 <!-- ==================================== -->
1621 <eat-comment />
1622
1623 <!-- Allows applications to RW to diagnostic resources. -->
1624 <permission android:name="android.permission.DIAGNOSTIC"
1625 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1626 android:protectionLevel="signature"
1627 android:description="@string/permdesc_diagnostic"
1628 android:label="@string/permlab_diagnostic" />
1629
1630 <!-- Allows an application to open, close, or disable the status bar
1631 and its icons. -->
1632 <permission android:name="android.permission.STATUS_BAR"
1633 android:label="@string/permlab_statusBar"
1634 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001635 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636
Joe Onorato8bc6c512010-06-04 16:21:12 -04001637 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1638 @hide -->
1639 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1640 android:label="@string/permlab_statusBarService"
1641 android:description="@string/permdesc_statusBarService"
1642 android:protectionLevel="signature" />
1643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 <!-- Allows an application to force a BACK operation on whatever is the
1645 top activity. -->
1646 <permission android:name="android.permission.FORCE_BACK"
1647 android:label="@string/permlab_forceBack"
1648 android:description="@string/permdesc_forceBack"
1649 android:protectionLevel="signature" />
1650
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001651 <!-- Allows an application to update device statistics. Not for
1652 use by third party apps. -->
1653 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001654 android:label="@string/permlab_updateBatteryStats"
1655 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001656 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001657
Dianne Hackborn35654b62013-01-14 17:38:02 -08001658 <!-- @hide Allows an application to collect battery statistics -->
1659 <permission android:name="android.permission.GET_APP_OPS_STATS"
1660 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1661 android:label="@string/permlab_getAppOpsStats"
1662 android:description="@string/permdesc_getAppOpsStats"
1663 android:protectionLevel="signature|system|development" />
1664
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001665 <!-- Allows an application to update application operation statistics. Not for
1666 use by third party apps. @hide -->
1667 <permission android:name="android.permission.UPDATE_APP_OPS_STATS"
1668 android:label="@string/permlab_updateAppOpsStats"
1669 android:description="@string/permdesc_updateAppOpsStats"
1670 android:protectionLevel="signature|system" />
1671
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001672 <!-- Allows an application to open windows that are for use by parts
1673 of the system user interface. Not for use by third party apps. -->
1674 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1675 android:label="@string/permlab_internalSystemWindow"
1676 android:description="@string/permdesc_internalSystemWindow"
1677 android:protectionLevel="signature" />
1678
1679 <!-- Allows an application to manage (create, destroy,
1680 Z-order) application tokens in the window manager. This is only
1681 for use by the system. -->
1682 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1683 android:label="@string/permlab_manageAppTokens"
1684 android:description="@string/permdesc_manageAppTokens"
1685 android:protectionLevel="signature" />
1686
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001687 <!-- @hide Allows the application to temporarily freeze the screen for a
1688 full-screen transition. -->
1689 <permission android:name="android.permission.FREEZE_SCREEN"
1690 android:label="@string/permlab_freezeScreen"
1691 android:description="@string/permdesc_freezeScreen"
1692 android:protectionLevel="signature" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001693
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001694 <!-- Allows an application to inject user events (keys, touch, trackball)
1695 into the event stream and deliver them to ANY window. Without this
1696 permission, you can only deliver events to windows in your own process.
1697 Very few applications should need to use this permission. -->
1698 <permission android:name="android.permission.INJECT_EVENTS"
1699 android:label="@string/permlab_injectEvents"
1700 android:description="@string/permdesc_injectEvents"
1701 android:protectionLevel="signature" />
1702
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001703 <!-- @hide Allows an application to register an input filter which filters the stream
1704 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1705 <permission android:name="android.permission.FILTER_EVENTS"
1706 android:label="@string/permlab_filter_events"
1707 android:description="@string/permdesc_filter_events"
1708 android:protectionLevel="signature" />
1709
1710 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1711 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1712 android:label="@string/permlab_retrieve_window_info"
1713 android:description="@string/permdesc_retrieve_window_info"
1714 android:protectionLevel="signature" />
1715
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001716 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1717 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1718 android:label="@string/permlab_temporary_enable_accessibility"
1719 android:description="@string/permdesc_temporary_enable_accessibility"
1720 android:protectionLevel="signature" />
1721
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001722 <!-- @hide Allows an application to magnify the content of a display. -->
1723 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1724 android:label="@string/permlab_magnify_display"
1725 android:description="@string/permdesc_magnify_display"
1726 android:protectionLevel="signature" />
1727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001728 <!-- Allows an application to watch and control how activities are
1729 started globally in the system. Only for is in debugging
1730 (usually the monkey command). -->
1731 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1732 android:label="@string/permlab_runSetActivityWatcher"
1733 android:description="@string/permdesc_runSetActivityWatcher"
1734 android:protectionLevel="signature" />
1735
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001736 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001737 to put the higher-level system there into a shutdown state.
1738 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001739 <permission android:name="android.permission.SHUTDOWN"
1740 android:label="@string/permlab_shutdown"
1741 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001742 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001743
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001744 <!-- Allows an application to tell the activity manager to temporarily
1745 stop application switches, putting it into a special mode that
1746 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001747 critical UI such as the home screen.
1748 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001749 <permission android:name="android.permission.STOP_APP_SWITCHES"
1750 android:label="@string/permlab_stopAppSwitches"
1751 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001752 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001753
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08001754 <!-- Allows an application to retrieve private information about
1755 the current top activity, such as any assist context it can provide. -->
1756 <permission android:name="android.permission.GET_TOP_ACTIVITY_INFO"
1757 android:label="@string/permlab_getTopActivityInfo"
1758 android:description="@string/permdesc_getTopActivityInfo"
1759 android:protectionLevel="signature" />
1760
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001761 <!-- Allows an application to retrieve the current state of keys and
Jeff Brownac143512012-04-05 18:57:33 -07001762 switches. This is only for use by the system.
1763 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001764 <permission android:name="android.permission.READ_INPUT_STATE"
1765 android:label="@string/permlab_readInputState"
1766 android:description="@string/permdesc_readInputState"
1767 android:protectionLevel="signature" />
1768
Dianne Hackbornd6847842010-01-12 18:14:19 -08001769 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1770 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 <permission android:name="android.permission.BIND_INPUT_METHOD"
1772 android:label="@string/permlab_bindInputMethod"
1773 android:description="@string/permdesc_bindInputMethod"
1774 android:protectionLevel="signature" />
1775
Svetoslav38228962013-01-29 01:04:35 -08001776 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001777 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001778 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1779 android:label="@string/permlab_bindAccessibilityService"
1780 android:description="@string/permdesc_bindAccessibilityService"
1781 android:protectionLevel="signature" />
1782
satok988323c2011-06-22 16:38:13 +09001783 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1784 to ensure that only the system can bind to it. -->
1785 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1786 android:label="@string/permlab_bindTextService"
1787 android:description="@string/permdesc_bindTextService"
1788 android:protectionLevel="signature" />
1789
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001790 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001791 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001792 <permission android:name="android.permission.BIND_VPN_SERVICE"
1793 android:label="@string/permlab_bindVpnService"
1794 android:description="@string/permdesc_bindVpnService"
1795 android:protectionLevel="signature" />
1796
Dianne Hackbornd6847842010-01-12 18:14:19 -08001797 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1798 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001799 <permission android:name="android.permission.BIND_WALLPAPER"
1800 android:label="@string/permlab_bindWallpaper"
1801 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001802 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001803
Dianne Hackbornd6847842010-01-12 18:14:19 -08001804 <!-- Must be required by device administration receiver, to ensure that only the
1805 system can interact with it. -->
1806 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1807 android:label="@string/permlab_bindDeviceAdmin"
1808 android:description="@string/permdesc_bindDeviceAdmin"
1809 android:protectionLevel="signature" />
1810
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001811 <!-- Allows low-level access to setting the orientation (actually
1812 rotation) of the screen. Not for use by normal applications. -->
1813 <permission android:name="android.permission.SET_ORIENTATION"
1814 android:label="@string/permlab_setOrientation"
1815 android:description="@string/permdesc_setOrientation"
1816 android:protectionLevel="signature" />
1817
Jeff Brown1a84fd12011-06-02 01:26:32 -07001818 <!-- Allows low-level access to setting the pointer speed.
1819 Not for use by normal applications. -->
1820 <permission android:name="android.permission.SET_POINTER_SPEED"
1821 android:label="@string/permlab_setPointerSpeed"
1822 android:description="@string/permdesc_setPointerSpeed"
1823 android:protectionLevel="signature" />
1824
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001825 <!-- Allows low-level access to setting the keyboard layout.
Jeff Brown507f5582012-05-07 19:06:06 -07001826 Not for use by normal applications.
1827 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001828 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1829 android:label="@string/permlab_setKeyboardLayout"
1830 android:description="@string/permdesc_setKeyboardLayout"
1831 android:protectionLevel="signature" />
1832
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001833 <!-- Allows an application to install packages. -->
1834 <permission android:name="android.permission.INSTALL_PACKAGES"
1835 android:label="@string/permlab_installPackages"
1836 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001837 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838
1839 <!-- Allows an application to clear user data -->
1840 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1841 android:label="@string/permlab_clearAppUserData"
1842 android:description="@string/permdesc_clearAppUserData"
1843 android:protectionLevel="signature" />
1844
1845 <!-- Allows an application to delete cache files. -->
1846 <permission android:name="android.permission.DELETE_CACHE_FILES"
1847 android:label="@string/permlab_deleteCacheFiles"
1848 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001849 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001850
1851 <!-- Allows an application to delete packages. -->
1852 <permission android:name="android.permission.DELETE_PACKAGES"
1853 android:label="@string/permlab_deletePackages"
1854 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001855 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001856
Jeff Brownec7c78f2010-03-30 23:37:25 -07001857 <!-- Allows an application to move location of installed package.
1858 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001859 <permission android:name="android.permission.MOVE_PACKAGE"
1860 android:label="@string/permlab_movePackage"
1861 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001862 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001863
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001864 <!-- Allows an application to change whether an application component (other than its own) is
1865 enabled or not. -->
1866 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1867 android:label="@string/permlab_changeComponentState"
1868 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001869 android:protectionLevel="signature|system" />
1870
1871 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1872 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1873 android:label="@string/permlab_grantRevokePermissions"
1874 android:description="@string/permdesc_grantRevokePermissions"
1875 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001876
1877 <!-- Allows an application to use SurfaceFlinger's low level features -->
1878 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1879 android:label="@string/permlab_accessSurfaceFlinger"
1880 android:description="@string/permdesc_accessSurfaceFlinger"
1881 android:protectionLevel="signature" />
1882
1883 <!-- Allows an application to take screen shots and more generally
1884 get access to the frame buffer data -->
1885 <permission android:name="android.permission.READ_FRAME_BUFFER"
1886 android:label="@string/permlab_readFrameBuffer"
1887 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001888 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001889
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001890 <!-- Allows an application to configure and connect to Wifi displays
1891 @hide -->
1892 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1893 android:label="@string/permlab_configureWifiDisplay"
1894 android:description="@string/permdesc_configureWifiDisplay"
1895 android:protectionLevel="signature" />
1896
1897 <!-- Allows an application to control low-level features of Wifi displays
1898 such as opening an RTSP socket. This permission should only be used
1899 by the display manager.
1900 @hide -->
1901 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1902 android:label="@string/permlab_controlWifiDisplay"
1903 android:description="@string/permdesc_controlWifiDisplay"
1904 android:protectionLevel="signature" />
1905
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001906 <!-- Required to be able to disable the device (very dangerous!). -->
1907 <permission android:name="android.permission.BRICK"
1908 android:label="@string/permlab_brick"
1909 android:description="@string/permdesc_brick"
1910 android:protectionLevel="signature" />
1911
1912 <!-- Required to be able to reboot the device. -->
1913 <permission android:name="android.permission.REBOOT"
1914 android:label="@string/permlab_reboot"
1915 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001916 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001917
1918 <!-- Allows low-level access to power management -->
1919 <permission android:name="android.permission.DEVICE_POWER"
1920 android:label="@string/permlab_devicePower"
1921 android:description="@string/permdesc_devicePower"
1922 android:protectionLevel="signature" />
1923
Dianne Hackborn8832c182012-09-17 17:20:24 -07001924 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001925 <permission android:name="android.permission.NET_TUNNELING"
1926 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1927 android:protectionLevel="signature" />
1928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 <!-- Run as a manufacturer test application, running as the root user.
1930 Only available when the device is running in manufacturer test mode. -->
1931 <permission android:name="android.permission.FACTORY_TEST"
1932 android:label="@string/permlab_factoryTest"
1933 android:description="@string/permdesc_factoryTest"
1934 android:protectionLevel="signature" />
1935
1936 <!-- Allows an application to broadcast a notification that an application
1937 package has been removed. -->
1938 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1939 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1940 android:label="@string/permlab_broadcastPackageRemoved"
1941 android:description="@string/permdesc_broadcastPackageRemoved"
1942 android:protectionLevel="signature" />
1943
1944 <!-- Allows an application to broadcast an SMS receipt notification -->
1945 <permission android:name="android.permission.BROADCAST_SMS"
1946 android:permissionGroup="android.permission-group.MESSAGES"
1947 android:label="@string/permlab_broadcastSmsReceived"
1948 android:description="@string/permdesc_broadcastSmsReceived"
1949 android:protectionLevel="signature" />
1950
1951 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1952 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1953 android:permissionGroup="android.permission-group.MESSAGES"
1954 android:label="@string/permlab_broadcastWapPush"
1955 android:description="@string/permdesc_broadcastWapPush"
1956 android:protectionLevel="signature" />
1957
1958 <permission android:name="android.permission.MASTER_CLEAR"
1959 android:label="@string/permlab_masterClear"
1960 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08001961 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001962
1963 <!-- Allows an application to call any phone number, including emergency
1964 numbers, without going through the Dialer user interface for the user
1965 to confirm the call being placed. -->
1966 <permission android:name="android.permission.CALL_PRIVILEGED"
1967 android:label="@string/permlab_callPrivileged"
1968 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08001969 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001970
Jim Miller767be5f2009-08-25 19:33:57 -07001971 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1972 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1973 android:label="@string/permlab_performCdmaProvisioning"
1974 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08001975 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07001976
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 <!-- Allows enabling/disabling location update notifications from
1978 the radio. Not for use by normal applications. -->
1979 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1980 android:label="@string/permlab_locationUpdates"
1981 android:description="@string/permdesc_locationUpdates"
Dianne Hackborne639da72012-02-21 15:11:13 -08001982 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983
1984 <!-- Allows read/write access to the "properties" table in the checkin
1985 database, to change values that get uploaded. -->
1986 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1987 android:label="@string/permlab_checkinProperties"
1988 android:description="@string/permdesc_checkinProperties"
Dianne Hackborne639da72012-02-21 15:11:13 -08001989 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990
1991 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001992 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001993 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1994 android:label="@string/permlab_pkgUsageStats"
1995 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001996 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997
1998 <!-- Allows an application to collect battery statistics -->
1999 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07002000 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002001 android:label="@string/permlab_batteryStats"
2002 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07002003 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002004
Christopher Tate181fafa2009-05-14 11:12:14 -07002005 <!-- Allows an application to control the backup and restore process
2006 @hide pending API council -->
2007 <permission android:name="android.permission.BACKUP"
2008 android:label="@string/permlab_backup"
2009 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08002010 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07002011
Christopher Tate4a627c72011-04-01 14:43:32 -07002012 <!-- Allows a package to launch the secure full-backup confirmation UI.
2013 ONLY the system process may hold this permission.
2014 @hide -->
2015 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
2016 android:label="@string/permlab_confirm_full_backup"
2017 android:description="@string/permdesc_confirm_full_backup"
2018 android:protectionLevel="signature" />
2019
Winson Chung81f39eb2011-01-11 18:05:01 -08002020 <!-- Must be required by a {@link android.widget.RemoteViewsService},
2021 to ensure that only the system can bind to it. -->
2022 <permission android:name="android.permission.BIND_REMOTEVIEWS"
2023 android:label="@string/permlab_bindRemoteViews"
2024 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08002025 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08002026
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002027 <!-- Allows an application to tell the AppWidget service which application
2028 can access AppWidget's data. The normal user flow is that a user
2029 picks an AppWidget to go into a particular host, thereby giving that
2030 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031 An application that has this permission should honor that contract.
2032 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002033 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002034 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2035 android:label="@string/permlab_bindGadget"
2036 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08002037 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038
Michael Jurkafc753c02012-10-30 18:30:52 -07002039 <!-- Private permission, to restrict who can bring up a dialog to add a new
2040 keyguard widget
2041 @hide -->
2042 <permission android:name="android.permission.BIND_KEYGUARD_APPWIDGET"
2043 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2044 android:protectionLevel="signature|system" />
2045
Michael Jurka61a5b012012-04-13 10:39:45 -07002046 <!-- Internal permission allowing an application to query/set which
2047 applications can bind AppWidgets.
2048 @hide -->
2049 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
2050 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2051 android:protectionLevel="signature|system" />
2052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 <!-- Allows applications to change the background data setting
2054 @hide pending API council -->
2055 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
2056 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2057 android:protectionLevel="signature"
2058 android:description="@string/permdesc_changeBackgroundDataSetting"
2059 android:label="@string/permlab_changeBackgroundDataSetting" />
2060
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002061 <!-- This permission can be used on content providers to allow the global
2062 search system to access their data. Typically it used when the
2063 provider has some permissions protecting it (which global search
2064 would not be expected to hold), and added as a read-only permission
2065 to the path in the provider where global search queries are
2066 performed. This permission can not be held by regular applications;
2067 it is used by applications to protect themselves from everyone else
2068 besides global search. -->
2069 <permission android:name="android.permission.GLOBAL_SEARCH"
2070 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002071 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002072
2073 <!-- Internal permission protecting access to the global search
2074 system: ensures that only the system can access the provider
2075 to perform queries (since this otherwise provides unrestricted
2076 access to a variety of content providers), and to write the
2077 search statistics (to keep applications from gaming the source
2078 ranking).
2079 @hide -->
2080 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
2081 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2082 android:protectionLevel="signature" />
2083
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002084 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07002085 @hide XXX Change to signature once the picker is moved to its
2086 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002087 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
2088 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002089 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002090
John Spurlockf4f6b4c2012-08-25 12:08:03 -04002091 <!-- Allows applications to read dream settings and dream state.
2092 @hide -->
2093 <permission android:name="android.permission.READ_DREAM_STATE"
2094 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2095 android:protectionLevel="signature" />
2096
2097 <!-- Allows applications to write dream settings, and start or stop dreaming.
2098 @hide -->
2099 <permission android:name="android.permission.WRITE_DREAM_STATE"
2100 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2101 android:protectionLevel="signature" />
2102
Jeff Brownec7c78f2010-03-30 23:37:25 -07002103 <!-- Allow an application to read and write the cache partition.
2104 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002105 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
2106 android:label="@string/permlab_cache_filesystem"
2107 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08002108 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002109
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08002110 <!-- Must be required by default container service so that only
2111 the system can bind to it and use it to copy
2112 protected data to secure containers or files
2113 accessible to the system.
2114 @hide -->
2115 <permission android:name="android.permission.COPY_PROTECTED_DATA"
2116 android:label="@string/permlab_copyProtectedData"
2117 android:description="@string/permlab_copyProtectedData"
2118 android:protectionLevel="signature" />
2119
Jason parks8888c592011-01-20 22:46:41 -06002120 <!-- Internal permission protecting access to the encryption methods
2121 @hide
2122 -->
2123 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08002124 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06002125
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002126 <!-- Allows an application to read historical network usage for
2127 specific networks and applications. @hide -->
2128 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
2129 android:label="@string/permlab_readNetworkUsageHistory"
2130 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08002131 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002132
2133 <!-- Allows an application to manage network policies (such as warning and disable
2134 limits) and to define application-specific rules. @hide -->
2135 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
2136 android:label="@string/permlab_manageNetworkPolicy"
2137 android:description="@string/permdesc_manageNetworkPolicy"
2138 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06002139
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002140 <!-- Allows an application to account its network traffic against other UIDs. Used
2141 by system services like download manager and media server. Not for use by
2142 third party apps. @hide -->
2143 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
2144 android:label="@string/permlab_modifyNetworkAccounting"
2145 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08002146 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002147
Tom Taylorb0381682011-08-11 14:27:25 -07002148 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002149 @hide Used internally.
2150 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002151 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002152 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002153 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002154
Dianne Hackborn8832c182012-09-17 17:20:24 -07002155 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002156 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002157 -->
2158 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2159 android:label="@string/permlab_packageVerificationAgent"
2160 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002161 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002162
2163 <!-- Must be required by package verifier receiver, to ensure that only the
2164 system can interact with it.
2165 @hide
2166 -->
2167 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2168 android:label="@string/permlab_bindPackageVerifier"
2169 android:description="@string/permdesc_bindPackageVerifier"
2170 android:protectionLevel="signature" />
2171
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002172 <!-- Allows applications to access serial ports via the SerialManager.
2173 @hide -->
2174 <permission android:name="android.permission.SERIAL_PORT"
2175 android:label="@string/permlab_serialPort"
2176 android:description="@string/permdesc_serialPort"
Geremy Condrac29f35b2012-10-17 14:06:31 -07002177 android:protectionLevel="signature|system" />
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002178
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002179 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2180 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2181 in particular ActivityManagerService#getContentProviderExternal(String) and
2182 ActivityManagerService#removeContentProviderExternal(String).
2183 @hide
2184 -->
2185 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2186 android:label="@string/permlab_accessContentProvidersExternally"
2187 android:description="@string/permdesc_accessContentProvidersExternally"
2188 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002189 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2190 OTA reboot *not* occur while the lock is held.
2191 @hide -->
2192 <permission android:name="android.permission.UPDATE_LOCK"
2193 android:label="@string/permlab_updateLock"
2194 android:description="@string/permdesc_updateLock"
2195 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002196
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002197 <!-- Allows an application to read the current set of notifications, including
2198 any metadata and intents attached.
2199 @hide -->
2200 <permission android:name="android.permission.ACCESS_NOTIFICATIONS"
2201 android:label="@string/permlab_accessNotifications"
2202 android:description="@string/permdesc_accessNotifications"
2203 android:protectionLevel="signature|system" />
2204
Daniel Sandler5feceeb2013-03-22 18:29:23 -07002205 <!-- Must be required by an {@link
2206 android.service.notification.NotificationListenerService},
2207 to ensure that only the system can bind to it. -->
2208 <permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
2209 android:label="@string/permlab_bindNotificationListenerService"
2210 android:description="@string/permdesc_bindNotificationListenerService"
2211 android:protectionLevel="signature" />
2212
Christopher Tate4a627c72011-04-01 14:43:32 -07002213 <!-- The system process is explicitly the only one allowed to launch the
2214 confirmation UI for full backup/restore -->
2215 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002217 <application android:process="system"
2218 android:persistent="true"
2219 android:hasCode="false"
2220 android:label="@string/android_system_label"
2221 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002222 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002223 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002224 android:icon="@drawable/ic_launcher_android"
2225 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002226 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002227 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002228 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002229 android:excludeFromRecents="true"
2230 android:multiprocess="true">
2231 <intent-filter>
2232 <action android:name="android.intent.action.CHOOSER" />
2233 <category android:name="android.intent.category.DEFAULT" />
2234 </intent-filter>
2235 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002236 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002237 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002238 android:label="@string/heavy_weight_switcher_title"
2239 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002240 android:excludeFromRecents="true"
2241 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002242 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002243 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002244 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2245 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002246 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002247 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2248 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002249 android:excludeFromRecents="true"
2250 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002251 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002252
Fred Quintana33269202009-04-20 16:05:10 -07002253 <activity android:name="android.accounts.ChooseAccountActivity"
2254 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002255 android:exported="true"
2256 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002257 android:label="@string/choose_account_label"
2258 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002259 </activity>
2260
Fred Quintana1121bb52011-09-14 23:19:35 -07002261 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2262 android:excludeFromRecents="true"
2263 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002264 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002265 android:label="@string/choose_account_label"
2266 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002267 </activity>
2268
2269 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2270 android:excludeFromRecents="true"
Jatin Lodhia856b01e2012-09-28 10:53:37 -07002271 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002272 android:label="@string/choose_account_label"
2273 android:process=":ui">
2274 </activity>
2275
Amith Yamasani23c8b962013-04-10 13:37:18 -07002276 <activity android:name="android.accounts.CantAddAccountActivity"
2277 android:excludeFromRecents="true"
2278 android:exported="true"
2279 android:theme="@android:style/Theme.Holo.Dialog"
2280 android:label="@string/error_message_title"
2281 android:process=":ui">
2282 </activity>
2283
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002284 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2285 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002286 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002287 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2288 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002289 </activity>
2290
Fred Quintanab19e62a2010-12-16 13:54:43 -08002291 <activity android:name="android.content.SyncActivityTooManyDeletes"
2292 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002293 android:label="@string/sync_too_many_deletes"
2294 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002295 </activity>
2296
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002297 <activity android:name="com.android.server.ShutdownActivity"
2298 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002299 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002300 <intent-filter>
2301 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2302 <category android:name="android.intent.category.DEFAULT" />
2303 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002304 <intent-filter>
2305 <action android:name="android.intent.action.REBOOT" />
2306 <category android:name="android.intent.category.DEFAULT" />
2307 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002308 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002309
Danke Xie22d1f9f2009-08-18 18:28:45 -04002310 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002311 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002312 android:excludeFromRecents="true"
2313 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002314 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002315
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002316 <receiver android:name="com.android.server.BootReceiver"
2317 android:primaryUserOnly="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002318 <intent-filter>
2319 <action android:name="android.intent.action.BOOT_COMPLETED" />
2320 </intent-filter>
2321 </receiver>
2322
Geremy Condrab6310842012-08-23 22:00:15 -07002323 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2324 <intent-filter>
2325 <action android:name="android.intent.action.UPDATE_PINS" />
2326 </intent-filter>
2327 </receiver>
2328
Ben Gruver633dc9b2013-04-04 12:05:49 -07002329 <receiver android:name="com.android.server.updates.IntentFirewallInstallReceiver" >
2330 <intent-filter>
2331 <action android:name="android.intent.action.UPDATE_INTENT_FIREWALL" />
2332 </intent-filter>
2333 </receiver>
2334
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002335 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2336 <intent-filter>
2337 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2338 </intent-filter>
2339 </receiver>
2340
Geremy Condra78a4c712013-01-30 11:20:26 -08002341 <receiver android:name="com.android.server.updates.TZInfoInstallReceiver" >
2342 <intent-filter>
2343 <action android:name="android.intent.action.UPDATE_TZINFO" />
2344 </intent-filter>
2345 </receiver>
2346
Geremy Condra77118fb2013-03-26 21:09:01 -07002347 <receiver android:name="com.android.server.updates.SELinuxPolicyInstallReceiver" >
2348 <intent-filter>
2349 <action android:name="android.intent.action.UPDATE_SEPOLICY" />
2350 </intent-filter>
2351 </receiver>
2352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002353 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002354 android:permission="android.permission.MASTER_CLEAR"
2355 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002356 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002357 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2358 <action android:name="android.intent.action.MASTER_CLEAR" />
2359
2360 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002361 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002362 <category android:name="android.intent.category.MASTER_CLEAR" />
2363 </intent-filter>
2364 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002365
2366 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2367 android:permission="android.permission.MASTER_CLEAR"
2368 android:exported="true" />
2369
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07002370 <service android:name="android.hardware.location.GeofenceHardwareService"
2371 android:permission="android.permission.LOCATION_HARDWARE"
2372 android:exported="false" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002373 </application>
2374
2375</manifest>