blob: c23012af7feb94434eaaf59724447d1cc37f9c9f [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" />
Wink Saville948282b2013-08-29 08:55:16 -0700154 <protected-broadcast android:name="android.intent.action.DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800155
156 <protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
157 <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
158 <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" />
159 <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" />
Robert Greenwalt89710842013-06-25 11:41:53 -0700160 <protected-broadcast android:name="android.net.wifi.WIFI_SCAN_AVAILABLE" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800161 <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" />
162 <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" />
163 <protected-broadcast android:name="android.net.wifi.STATE_CHANGE" />
164 <protected-broadcast android:name="android.net.wifi.LINK_CONFIGURATION_CHANGED" />
165 <protected-broadcast android:name="android.net.wifi.CONFIGURED_NETWORKS_CHANGE" />
166 <protected-broadcast android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
167 <protected-broadcast android:name="android.net.wifi.supplicant.STATE_CHANGE" />
168 <protected-broadcast android:name="android.net.wifi.p2p.STATE_CHANGED" />
169 <protected-broadcast android:name="android.net.wifi.p2p.DISCOVERY_STATE_CHANGE" />
170 <protected-broadcast android:name="android.net.wifi.p2p.THIS_DEVICE_CHANGED" />
171 <protected-broadcast android:name="android.net.wifi.p2p.PEERS_CHANGED" />
172 <protected-broadcast android:name="android.net.wifi.p2p.CONNECTION_STATE_CHANGE" />
173 <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" />
174 <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" />
175 <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" />
Nick Kralevicha4405ba2012-12-06 15:22:11 -0800176 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
177 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" />
178 <protected-broadcast android:name="android.intent.action.AIRPLANE_MODE" />
179 <protected-broadcast android:name="android.intent.action.ADVANCED_SETTINGS" />
Jeff Sharkey02ffba92013-03-08 16:13:15 -0800180 <protected-broadcast android:name="android.intent.action.BUGREPORT_FINISHED" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400181
Svetoslavb3038ec2013-02-13 14:39:30 -0800182 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_START" />
183 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_END" />
184
Wink Saville948282b2013-08-29 08:55:16 -0700185 <protected-broadcast
186 android:name="com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION" />
187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 <!-- ====================================== -->
189 <!-- Permissions for things that cost money -->
190 <!-- ====================================== -->
191 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193 <!-- Used for permissions that can be used to make the user spend money
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700194 without their direct involvement. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 <permission-group android:name="android.permission-group.COST_MONEY"
196 android:label="@string/permgrouplab_costMoney"
197 android:description="@string/permgroupdesc_costMoney" />
198
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 <!-- ================================== -->
200 <!-- Permissions for accessing messages -->
201 <!-- ================================== -->
202 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 <!-- Used for permissions that allow an application to send messages
205 on behalf of the user or intercept messages being received by the
206 user. This is primarily intended for SMS/MMS messaging, such as
207 receiving or reading an MMS. -->
208 <permission-group android:name="android.permission-group.MESSAGES"
209 android:label="@string/permgrouplab_messages"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700210 android:icon="@drawable/perm_group_messages"
211 android:description="@string/permgroupdesc_messages"
212 android:permissionGroupFlags="personalInfo"
213 android:priority="360"/>
214
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700215 <!-- Allows an application to send SMS messages. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700216 <permission android:name="android.permission.SEND_SMS"
217 android:permissionGroup="android.permission-group.MESSAGES"
218 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700219 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700220 android:label="@string/permlab_sendSms"
221 android:description="@string/permdesc_sendSms" />
222
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700223 <!-- Allows an application (Phone) to send a request to other applications
Scott Main93e60b52013-06-10 11:05:55 -0700224 to handle the respond-via-message action during incoming calls.
225 <p>Not for use by third-party applications. -->
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700226 <permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700227 android:permissionGroup="android.permission-group.MESSAGES"
228 android:protectionLevel="signature|system"
Daisuke Miyakawa149ceec2012-03-26 09:04:12 -0700229 android:label="@string/permlab_sendRespondViaMessageRequest"
230 android:description="@string/permdesc_sendRespondViaMessageRequest" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231
232 <!-- Allows an application to monitor incoming SMS messages, to record
233 or perform processing on them. -->
234 <permission android:name="android.permission.RECEIVE_SMS"
235 android:permissionGroup="android.permission-group.MESSAGES"
236 android:protectionLevel="dangerous"
237 android:label="@string/permlab_receiveSms"
238 android:description="@string/permdesc_receiveSms" />
239
240 <!-- Allows an application to monitor incoming MMS messages, to record
241 or perform processing on them. -->
242 <permission android:name="android.permission.RECEIVE_MMS"
243 android:permissionGroup="android.permission-group.MESSAGES"
244 android:protectionLevel="dangerous"
245 android:label="@string/permlab_receiveMms"
246 android:description="@string/permdesc_receiveMms" />
247
Jake Hambyab79ee42011-04-26 16:26:46 -0700248 <!-- Allows an application to receive emergency cell broadcast messages,
Scott Main93e60b52013-06-10 11:05:55 -0700249 to record or display them to the user.
250 <p>Not for use by third-party applications.
Jake Hambyab79ee42011-04-26 16:26:46 -0700251 @hide Pending API council approval -->
252 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
253 android:permissionGroup="android.permission-group.MESSAGES"
Dianne Hackborne639da72012-02-21 15:11:13 -0800254 android:protectionLevel="signature|system"
Jake Hambyab79ee42011-04-26 16:26:46 -0700255 android:label="@string/permlab_receiveEmergencyBroadcast"
256 android:description="@string/permdesc_receiveEmergencyBroadcast" />
257
Jake Hambyc3296ff2012-04-18 12:32:18 -0700258 <!-- Allows an application to read previously received cell broadcast
259 messages and to register a content observer to get notifications when
260 a cell broadcast has been received and added to the database. For
261 emergency alerts, the database is updated immediately after the
262 alert dialog and notification sound/vibration/speech are presented.
263 The "read" column is then updated after the user dismisses the alert.
264 This enables supplementary emergency assistance apps to start loading
265 additional emergency information (if Internet access is available)
266 when the alert is first received, and to delay presenting the info
267 to the user until after the initial alert dialog is dismissed.
268 @hide Pending API council approval -->
269 <permission android:name="android.permission.READ_CELL_BROADCASTS"
270 android:permissionGroup="android.permission-group.MESSAGES"
271 android:protectionLevel="dangerous"
272 android:label="@string/permlab_readCellBroadcasts"
273 android:description="@string/permdesc_readCellBroadcasts" />
274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 <!-- Allows an application to read SMS messages. -->
276 <permission android:name="android.permission.READ_SMS"
277 android:permissionGroup="android.permission-group.MESSAGES"
278 android:protectionLevel="dangerous"
279 android:label="@string/permlab_readSms"
280 android:description="@string/permdesc_readSms" />
281
282 <!-- Allows an application to write SMS messages. -->
283 <permission android:name="android.permission.WRITE_SMS"
284 android:permissionGroup="android.permission-group.MESSAGES"
285 android:protectionLevel="dangerous"
286 android:label="@string/permlab_writeSms"
287 android:description="@string/permdesc_writeSms" />
288
289 <!-- Allows an application to monitor incoming WAP push messages. -->
290 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
291 android:permissionGroup="android.permission-group.MESSAGES"
292 android:protectionLevel="dangerous"
293 android:label="@string/permlab_receiveWapPush"
294 android:description="@string/permdesc_receiveWapPush" />
295
296 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700297 <!-- Permissions for accessing social info (contacts and social) -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 <!-- =============================================================== -->
299 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700300
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700301 <!-- Used for permissions that provide access to the user's social connections,
302 such as contacts, call logs, social stream, etc. This includes
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 both reading and writing of this data (which should generally be
304 expressed as two distinct permissions). -->
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700305
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700306 <permission-group android:name="android.permission-group.SOCIAL_INFO"
307 android:label="@string/permgrouplab_socialInfo"
308 android:icon="@drawable/perm_group_social_info"
309 android:description="@string/permgroupdesc_socialInfo"
310 android:permissionGroupFlags="personalInfo"
311 android:priority="320" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312
313 <!-- Allows an application to read the user's contacts data. -->
314 <permission android:name="android.permission.READ_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700315 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316 android:protectionLevel="dangerous"
317 android:label="@string/permlab_readContacts"
318 android:description="@string/permdesc_readContacts" />
319
320 <!-- Allows an application to write (but not read) the user's
321 contacts data. -->
322 <permission android:name="android.permission.WRITE_CONTACTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700323 android:permissionGroup="android.permission-group.SOCIAL_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 android:protectionLevel="dangerous"
325 android:label="@string/permlab_writeContacts"
326 android:description="@string/permdesc_writeContacts" />
327
Subir Jhanb603af612012-08-06 17:19:22 -0700328 <!-- Allows an application to execute contacts directory search.
Scott Main93e60b52013-06-10 11:05:55 -0700329 This should only be used by ContactsProvider.
330 <p>Not for use by third-party applications. -->
Subir Jhanb603af612012-08-06 17:19:22 -0700331 <!-- @hide -->
332 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
333 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Subir Jhanb0224cca2012-08-16 17:04:54 -0700334 android:protectionLevel="signature|system" />
Subir Jhanb603af612012-08-06 17:19:22 -0700335
Scott Main2681faa2012-11-01 12:18:31 -0700336 <!-- Allows an application to read the user's call log.
337 <p class="note"><strong>Note:</strong> If your app uses the
338 {@link #READ_CONTACTS} permission and <em>both</em> your <a
339 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
340 minSdkVersion}</a> and <a
341 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
342 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
343 grants your app this permission. If you don't need this permission, be sure your <a
344 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
345 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700346 <permission android:name="android.permission.READ_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700347 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700348 android:protectionLevel="dangerous"
349 android:label="@string/permlab_readCallLog"
350 android:description="@string/permdesc_readCallLog" />
351
352 <!-- Allows an application to write (but not read) the user's
Scott Main2681faa2012-11-01 12:18:31 -0700353 contacts data.
354 <p class="note"><strong>Note:</strong> If your app uses the
355 {@link #WRITE_CONTACTS} permission and <em>both</em> your <a
356 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
357 minSdkVersion}</a> and <a
358 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
359 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
360 grants your app this permission. If you don't need this permission, be sure your <a
361 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
362 targetSdkVersion}</a> is 16 or higher.</p> -->
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700363 <permission android:name="android.permission.WRITE_CALL_LOG"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700364 android:permissionGroup="android.permission-group.SOCIAL_INFO"
Daniel Lehmannf06d9492012-03-12 13:45:19 -0700365 android:protectionLevel="dangerous"
366 android:label="@string/permlab_writeCallLog"
367 android:description="@string/permdesc_writeCallLog" />
368
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700369 <!-- Allows an application to read from the user's social stream. -->
370 <permission android:name="android.permission.READ_SOCIAL_STREAM"
371 android:permissionGroup="android.permission-group.SOCIAL_INFO"
372 android:protectionLevel="dangerous"
373 android:label="@string/permlab_readSocialStream"
374 android:description="@string/permdesc_readSocialStream" />
375
376 <!-- Allows an application to write (but not read) the user's
377 social stream data. -->
378 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
379 android:permissionGroup="android.permission-group.SOCIAL_INFO"
380 android:protectionLevel="dangerous"
381 android:label="@string/permlab_writeSocialStream"
382 android:description="@string/permdesc_writeSocialStream" />
383
384 <!-- =============================================================== -->
385 <!-- Permissions for accessing information about the device owner -->
386 <!-- =============================================================== -->
387 <eat-comment />
388
389 <!-- Used for permissions that provide access to information about the device
390 user such as profile information. This includes both reading and
391 writing of this data (which should generally be expressed as two
392 distinct permissions). -->
393 <permission-group android:name="android.permission-group.PERSONAL_INFO"
394 android:label="@string/permgrouplab_personalInfo"
395 android:icon="@drawable/perm_group_personal_info"
396 android:description="@string/permgroupdesc_personalInfo"
397 android:permissionGroupFlags="personalInfo"
398 android:priority="310" />
399
Dave Santoro43251332011-05-11 11:39:54 -0700400 <!-- Allows an application to read the user's personal profile data. -->
401 <permission android:name="android.permission.READ_PROFILE"
402 android:permissionGroup="android.permission-group.PERSONAL_INFO"
403 android:protectionLevel="dangerous"
404 android:label="@string/permlab_readProfile"
405 android:description="@string/permdesc_readProfile" />
406
407 <!-- Allows an application to write (but not read) the user's
408 personal profile data. -->
409 <permission android:name="android.permission.WRITE_PROFILE"
410 android:permissionGroup="android.permission-group.PERSONAL_INFO"
411 android:protectionLevel="dangerous"
412 android:label="@string/permlab_writeProfile"
413 android:description="@string/permdesc_writeProfile" />
414
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700415 <!-- =============================================================== -->
416 <!-- Permissions for accessing the device calendar -->
417 <!-- =============================================================== -->
418 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -0700419
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700420 <!-- Used for permissions that provide access to the device
421 calendar to create / view events.-->
422 <permission-group android:name="android.permission-group.CALENDAR"
423 android:label="@string/permgrouplab_calendar"
424 android:icon="@drawable/perm_group_calendar"
425 android:description="@string/permgroupdesc_calendar"
426 android:permissionGroupFlags="personalInfo"
427 android:priority="290" />
Dave Santoro0b61f592011-10-03 18:25:26 -0700428
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 <!-- Allows an application to read the user's calendar data. -->
430 <permission android:name="android.permission.READ_CALENDAR"
431 android:permissionGroup="android.permission-group.PERSONAL_INFO"
432 android:protectionLevel="dangerous"
433 android:label="@string/permlab_readCalendar"
434 android:description="@string/permdesc_readCalendar" />
435
436 <!-- Allows an application to write (but not read) the user's
437 calendar data. -->
438 <permission android:name="android.permission.WRITE_CALENDAR"
439 android:permissionGroup="android.permission-group.PERSONAL_INFO"
440 android:protectionLevel="dangerous"
441 android:label="@string/permlab_writeCalendar"
442 android:description="@string/permdesc_writeCalendar" />
443
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700444 <!-- =============================================================== -->
445 <!-- Permissions for accessing the user dictionary-->
446 <!-- =============================================================== -->
447 <eat-comment />
448
449 <!-- Used for permissions that provide access to the user
450 calendar to create / view events.-->
451 <permission-group android:name="android.permission-group.USER_DICTIONARY"
452 android:label="@string/permgrouplab_dictionary"
453 android:icon="@drawable/perm_group_user_dictionary"
454 android:description="@string/permgroupdesc_dictionary"
455 android:permissionGroupFlags="personalInfo"
456 android:priority="170" />
457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700459 really only be required by an IME, or a dictionary editor like
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700460 the Settings app. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 <permission android:name="android.permission.READ_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700462 android:permissionGroup="android.permission-group.USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 android:protectionLevel="dangerous"
464 android:label="@string/permlab_readDictionary"
465 android:description="@string/permdesc_readDictionary" />
466
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700467 <!-- Used for permissions that provide access to the user
468 calendar to create / view events.-->
469 <permission-group android:name="android.permission-group.WRITE_USER_DICTIONARY"
470 android:label="@string/permgrouplab_writeDictionary"
471 android:icon="@drawable/perm_group_user_dictionary_write"
472 android:description="@string/permgroupdesc_writeDictionary"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700473 android:priority="160" />
474
Dianne Hackbornfd5015b2012-04-30 16:33:56 -0700475 <!-- Allows an application to write to the user dictionary. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700477 android:permissionGroup="android.permission-group.WRITE_USER_DICTIONARY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 android:protectionLevel="normal"
479 android:label="@string/permlab_writeDictionary"
480 android:description="@string/permdesc_writeDictionary" />
481
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700482 <!-- =============================================================== -->
483 <!-- Permissions for accessing the user bookmarks -->
484 <!-- =============================================================== -->
485 <eat-comment />
486
487 <!-- Used for permissions that provide access to the user
488 bookmarks and browser history.-->
489 <permission-group android:name="android.permission-group.BOOKMARKS"
490 android:label="@string/permgrouplab_bookmarks"
491 android:icon="@drawable/perm_group_bookmarks"
492 android:description="@string/permgroupdesc_bookmarks"
493 android:permissionGroupFlags="personalInfo"
494 android:priority="300" />
495
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400496 <!-- Allows an application to read (but not write) the user's
497 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400498 <permission android:name="com.android.browser.permission.READ_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_readHistoryBookmarks"
501 android:description="@string/permdesc_readHistoryBookmarks"
502 android:protectionLevel="dangerous" />
503
504 <!-- Allows an application to write (but not read) the user's
505 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400506 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700507 android:permissionGroup="android.permission-group.BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400508 android:label="@string/permlab_writeHistoryBookmarks"
509 android:description="@string/permdesc_writeHistoryBookmarks"
510 android:protectionLevel="dangerous" />
511
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700512 <!-- =============================================================== -->
513 <!-- Permissions for setting the device alarm -->
514 <!-- =============================================================== -->
515 <eat-comment />
516
517 <!-- Used for permissions that provide access to the user voicemail box. -->
518 <permission-group android:name="android.permission-group.DEVICE_ALARMS"
519 android:label="@string/permgrouplab_deviceAlarms"
520 android:icon="@drawable/perm_group_device_alarms"
521 android:description="@string/permgroupdesc_deviceAlarms"
522 android:permissionGroupFlags="personalInfo"
523 android:priority="210" />
524
Patrick Scotta73c4b02010-09-22 08:16:53 -0400525 <!-- Allows an application to broadcast an Intent to set an alarm for the
526 user. -->
527 <permission android:name="com.android.alarm.permission.SET_ALARM"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700528 android:permissionGroup="android.permission-group.DEVICE_ALARMS"
Patrick Scotta73c4b02010-09-22 08:16:53 -0400529 android:label="@string/permlab_setAlarm"
530 android:description="@string/permdesc_setAlarm"
531 android:protectionLevel="normal" />
532
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700533 <!-- =============================================================== -->
534 <!-- Permissions for accessing the user voicemail -->
535 <!-- =============================================================== -->
536 <eat-comment />
537
538 <!-- Used for permissions that provide access to the user voicemail box. -->
539 <permission-group android:name="android.permission-group.VOICEMAIL"
540 android:label="@string/permgrouplab_voicemail"
541 android:icon="@drawable/perm_group_voicemail"
542 android:description="@string/permgroupdesc_voicemail"
543 android:permissionGroupFlags="personalInfo"
544 android:priority="280" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700545
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100546 <!-- Allows an application to add voicemails into the system. -->
547 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700548 android:permissionGroup="android.permission-group.VOICEMAIL"
Debashish Chatterjee766839c2011-08-02 19:25:50 +0100549 android:protectionLevel="dangerous"
550 android:label="@string/permlab_addVoicemail"
551 android:description="@string/permdesc_addVoicemail" />
552
Svetoslav38228962013-01-29 01:04:35 -0800553 <!-- =============================================== -->
554 <!-- Permissions for enabling accessibility features -->
555 <!-- =============================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -0700556 <eat-comment />
Svetoslav38228962013-01-29 01:04:35 -0800557
558 <!-- Used for permissions that allow requesting certain accessibility features. -->
559 <permission-group android:name="android.permission-group.ACCESSIBILITY_FEATURES"
560 android:label="@string/permgrouplab_accessibilityFeatures"
561 android:icon="@drawable/perm_group_accessibility_features"
562 android:description="@string/permgroupdesc_accessibilityFeatures"
563 android:priority="380" />
564
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565 <!-- ======================================= -->
566 <!-- Permissions for accessing location info -->
567 <!-- ======================================= -->
568 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700569
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 <!-- Used for permissions that allow access to the user's current
571 location. -->
572 <permission-group android:name="android.permission-group.LOCATION"
573 android:label="@string/permgrouplab_location"
Dianne Hackborn99222d22012-05-06 16:30:15 -0700574 android:icon="@drawable/perm_group_location"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700575 android:description="@string/permgroupdesc_location"
576 android:permissionGroupFlags="personalInfo"
577 android:priority="330" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578
Scott Main277b3522012-11-01 10:55:02 -0700579 <!-- Allows an app to access precise location from location sources such
580 as GPS, cell towers, and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
582 android:permissionGroup="android.permission-group.LOCATION"
583 android:protectionLevel="dangerous"
584 android:label="@string/permlab_accessFineLocation"
585 android:description="@string/permdesc_accessFineLocation" />
586
Scott Main277b3522012-11-01 10:55:02 -0700587 <!-- Allows an app to access approximate location derived from network location
588 sources such as cell towers and Wi-Fi. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
590 android:permissionGroup="android.permission-group.LOCATION"
591 android:protectionLevel="dangerous"
592 android:label="@string/permlab_accessCoarseLocation"
593 android:description="@string/permdesc_accessCoarseLocation" />
594
595 <!-- Allows an application to create mock location providers for testing -->
596 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700597 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700598 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 android:label="@string/permlab_accessMockLocation"
600 android:description="@string/permdesc_accessMockLocation" />
601
602 <!-- Allows an application to access extra location provider commands -->
603 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700604 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700605 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 android:label="@string/permlab_accessLocationExtraCommands"
607 android:description="@string/permdesc_accessLocationExtraCommands" />
608
Scott Main93e60b52013-06-10 11:05:55 -0700609 <!-- Allows an application to install a location provider into the Location Manager.
610 <p>Not for use by third-party applications. -->
Mike Lockwood275555c2009-05-01 11:30:34 -0400611 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborne639da72012-02-21 15:11:13 -0800612 android:protectionLevel="signature|system"
Mike Lockwood275555c2009-05-01 11:30:34 -0400613 android:label="@string/permlab_installLocationProvider"
614 android:description="@string/permdesc_installLocationProvider" />
615
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700616 <!-- Allows an application to use location features in hardware,
Scott Main93e60b52013-06-10 11:05:55 -0700617 such as the geofencing api.
618 <p>Not for use by third-party applications. -->
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700619 <permission android:name="android.permission.LOCATION_HARDWARE"
620 android:permissionGroup="android.permission-group.LOCATION"
621 android:protectionLevel="signature|system" />
622 <uses-permission android:name="android.permission.LOCATION_HARDWARE"/>
623
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 <!-- ======================================= -->
625 <!-- Permissions for accessing networks -->
626 <!-- ======================================= -->
627 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700628
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800629 <!-- Used for permissions that provide access to networking services. The
630 main permission here is internet access, but this is also an
631 appropriate group for accessing or modifying any network configuration
632 or other related network operations. -->
633 <permission-group android:name="android.permission-group.NETWORK"
634 android:label="@string/permgrouplab_network"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700635 android:icon="@drawable/perm_group_network"
636 android:description="@string/permgroupdesc_network"
637 android:priority="270" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638
639 <!-- Allows applications to open network sockets. -->
640 <permission android:name="android.permission.INTERNET"
641 android:permissionGroup="android.permission-group.NETWORK"
642 android:protectionLevel="dangerous"
643 android:description="@string/permdesc_createNetworkSockets"
644 android:label="@string/permlab_createNetworkSockets" />
645
646 <!-- Allows applications to access information about networks -->
647 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
648 android:permissionGroup="android.permission-group.NETWORK"
649 android:protectionLevel="normal"
650 android:description="@string/permdesc_accessNetworkState"
651 android:label="@string/permlab_accessNetworkState" />
652
653 <!-- Allows applications to access information about Wi-Fi networks -->
654 <permission android:name="android.permission.ACCESS_WIFI_STATE"
655 android:permissionGroup="android.permission-group.NETWORK"
656 android:protectionLevel="normal"
657 android:description="@string/permdesc_accessWifiState"
658 android:label="@string/permlab_accessWifiState" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800659
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700660 <!-- Allows applications to change Wi-Fi connectivity state -->
661 <permission android:name="android.permission.CHANGE_WIFI_STATE"
662 android:permissionGroup="android.permission-group.NETWORK"
663 android:protectionLevel="dangerous"
664 android:description="@string/permdesc_changeWifiState"
665 android:label="@string/permlab_changeWifiState" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700666
Robert Greenwalt8588e472011-11-08 10:12:25 -0800667 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +0900668 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
669 android:permissionGroup="android.permission-group.NETWORK"
670 android:protectionLevel="normal"
671 android:description="@string/permdesc_accessWimaxState"
672 android:label="@string/permlab_accessWimaxState" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700673
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700674 <!-- @hide -->
675 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Adrian Ludwigdc410cb2012-04-13 13:51:48 -0700676 android:permissionGroup="android.permission-group.NETWORK"
677 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700678 android:description="@string/permdesc_changeWimaxState"
679 android:label="@string/permlab_changeWimaxState" />
680
681 <!-- ======================================= -->
682 <!-- Permissions for short range, peripheral networks -->
683 <!-- ======================================= -->
684 <eat-comment />
685
686 <!-- Used for permissions that provide access to other devices through Bluetooth.-->
687 <permission-group android:name="android.permission-group.BLUETOOTH_NETWORK"
688 android:label="@string/permgrouplab_bluetoothNetwork"
689 android:icon="@drawable/perm_group_bluetooth"
690 android:description="@string/permgroupdesc_bluetoothNetwork"
691 android:priority="260" />
692
693 <!-- Allows applications to connect to paired bluetooth devices -->
694 <permission android:name="android.permission.BLUETOOTH"
695 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
696 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800697 android:description="@string/permdesc_bluetooth"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -0700698 android:label="@string/permlab_bluetooth" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800699
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700700 <!-- Allows applications to discover and pair bluetooth devices -->
701 <permission android:name="android.permission.BLUETOOTH_ADMIN"
702 android:permissionGroup="android.permission-group.BLUETOOTH_NETWORK"
703 android:protectionLevel="dangerous"
704 android:description="@string/permdesc_bluetoothAdmin"
705 android:label="@string/permlab_bluetoothAdmin" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800706
Matthew Xiefca9d632012-10-04 12:25:28 -0700707 <!-- Allows bluetooth stack to access files
708 @hide This should only be used by Bluetooth apk.
709 -->
710 <permission android:name="android.permission.BLUETOOTH_STACK"
711 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
712 android:protectionLevel="signature" />
713
Nick Pelly1df862a2011-02-15 13:34:38 -0800714 <!-- Allows applications to perform I/O operations over NFC -->
Nick Pellye47150e2010-10-17 19:05:47 -0700715 <permission android:name="android.permission.NFC"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700716 android:permissionGroup="android.permission-group.NETWORK"
Nick Pelly038cabe2010-09-23 16:12:11 -0700717 android:protectionLevel="dangerous"
Nick Pellye47150e2010-10-17 19:05:47 -0700718 android:description="@string/permdesc_nfc"
719 android:label="@string/permlab_nfc" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700720
Dianne Hackborn2ca2c872012-09-16 16:03:36 -0700721 <!-- Allows an internal user to use privileged ConnectivityManager APIs.
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700722 @hide -->
723 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
724 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborne639da72012-02-21 15:11:13 -0800725 android:protectionLevel="signature|system" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700726
Haoyu Baidb3c8672012-06-20 14:29:57 -0700727 <!-- @hide -->
728 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
729 android:permissionGroup="android.permission-group.NETWORK"
730 android:protectionLevel="signature|system" />
731
Doug Zongkerb616f0c2013-01-29 09:05:21 -0800732 <!-- Allows access to the loop radio (Android@Home mesh network) device.
733 @hide -->
734 <permission android:name="android.permission.LOOP_RADIO"
735 android:permissionGroup="android.permission-group.NETWORK"
736 android:protectionLevel="signature|system" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800737
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800738 <!-- ================================== -->
739 <!-- Permissions for accessing accounts -->
740 <!-- ================================== -->
741 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700742
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700743 <!-- Permissions for direct access to the accounts managed
744 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 <permission-group android:name="android.permission-group.ACCOUNTS"
746 android:label="@string/permgrouplab_accounts"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700747 android:icon="@drawable/perm_group_accounts"
748 android:description="@string/permgroupdesc_accounts"
749 android:permissionGroupFlags="personalInfo"
750 android:priority="200" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800751
752 <!-- Allows access to the list of accounts in the Accounts Service -->
753 <permission android:name="android.permission.GET_ACCOUNTS"
754 android:permissionGroup="android.permission-group.ACCOUNTS"
755 android:protectionLevel="normal"
756 android:description="@string/permdesc_getAccounts"
757 android:label="@string/permlab_getAccounts" />
758
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700759 <!-- Allows an application to act as an AccountAuthenticator for
760 the AccountManager -->
761 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
762 android:permissionGroup="android.permission-group.ACCOUNTS"
763 android:protectionLevel="dangerous"
764 android:label="@string/permlab_authenticateAccounts"
765 android:description="@string/permdesc_authenticateAccounts" />
766
767 <!-- Allows an application to request authtokens from the AccountManager -->
768 <permission android:name="android.permission.USE_CREDENTIALS"
769 android:permissionGroup="android.permission-group.ACCOUNTS"
770 android:protectionLevel="dangerous"
771 android:label="@string/permlab_useCredentials"
772 android:description="@string/permdesc_useCredentials" />
773
774 <!-- Allows an application to manage the list of accounts in the AccountManager -->
775 <permission android:name="android.permission.MANAGE_ACCOUNTS"
776 android:permissionGroup="android.permission-group.ACCOUNTS"
777 android:protectionLevel="dangerous"
778 android:label="@string/permlab_manageAccounts"
779 android:description="@string/permdesc_manageAccounts" />
780
Scott Main93e60b52013-06-10 11:05:55 -0700781 <!-- Allows applications to call into AccountAuthenticators.
782 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700783 <permission android:name="android.permission.ACCOUNT_MANAGER"
784 android:permissionGroup="android.permission-group.ACCOUNTS"
785 android:protectionLevel="signature"
786 android:description="@string/permdesc_accountManagerService"
787 android:label="@string/permlab_accountManagerService" />
788
789 <!-- ================================== -->
790 <!-- Permissions for accessing hardware that may effect battery life-->
791 <!-- ================================== -->
792 <eat-comment />
793
794 <!-- Used for permissions that provide direct access to the hardware on
795 the device that has an effect on battery life. This includes vibrator,
796 flashlight, etc. -->
797
798 <permission-group android:name="android.permission-group.AFFECTS_BATTERY"
799 android:label="@string/permgrouplab_affectsBattery"
800 android:icon="@drawable/perm_group_affects_battery"
801 android:description="@string/permgroupdesc_affectsBattery"
802 android:priority="180" />
803
804 <!-- Allows applications to enter Wi-Fi Multicast mode -->
805 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
806 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
807 android:protectionLevel="dangerous"
808 android:description="@string/permdesc_changeWifiMulticastState"
809 android:label="@string/permlab_changeWifiMulticastState" />
810
811 <!-- Allows access to the vibrator -->
812 <permission android:name="android.permission.VIBRATE"
813 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
814 android:protectionLevel="normal"
815 android:label="@string/permlab_vibrate"
816 android:description="@string/permdesc_vibrate" />
817
818 <!-- Allows access to the flashlight -->
819 <permission android:name="android.permission.FLASHLIGHT"
820 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
821 android:protectionLevel="normal"
822 android:label="@string/permlab_flashlight"
823 android:description="@string/permdesc_flashlight" />
824
825 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
826 from dimming -->
827 <permission android:name="android.permission.WAKE_LOCK"
828 android:permissionGroup="android.permission-group.AFFECTS_BATTERY"
829 android:protectionLevel="normal"
830 android:label="@string/permlab_wakeLock"
831 android:description="@string/permdesc_wakeLock" />
832
833 <!-- ==================================================== -->
834 <!-- Permissions related to changing audio settings -->
835 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -0700836 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700837
838 <!-- Used for permissions that provide direct access to speaker settings
839 the device. -->
840 <permission-group android:name="android.permission-group.AUDIO_SETTINGS"
841 android:label="@string/permgrouplab_audioSettings"
842 android:icon="@drawable/perm_group_audio_settings"
843 android:description="@string/permgroupdesc_audioSettings"
844 android:priority="130" />
845
846 <!-- Allows an application to modify global audio settings -->
847 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
848 android:permissionGroup="android.permission-group.AUDIO_SETTINGS"
849 android:protectionLevel="normal"
850 android:label="@string/permlab_modifyAudioSettings"
851 android:description="@string/permdesc_modifyAudioSettings" />
852
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 <!-- ================================== -->
854 <!-- Permissions for accessing hardware -->
855 <!-- ================================== -->
856 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700857
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 <!-- Used for permissions that provide direct access to the hardware on
859 the device. This includes audio, the camera, vibrator, etc. -->
860 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
861 android:label="@string/permgrouplab_hardwareControls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700862 android:description="@string/permgroupdesc_hardwareControls"
863 android:priority="260"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800864
Mike Lockwood02eb8742011-02-27 09:10:37 -0800865 <!-- Allows an application to manage preferences and permissions for USB devices
866 @hide -->
867 <permission android:name="android.permission.MANAGE_USB"
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400868 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800869 android:protectionLevel="signature|system"
Mike Lockwood02eb8742011-02-27 09:10:37 -0800870 android:label="@string/permlab_manageUsb"
871 android:description="@string/permdesc_manageUsb" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -0400872
Mike Lockwood10bc1112011-01-10 08:24:08 -0500873 <!-- Allows an application to access the MTP USB kernel driver.
874 For use only by the device side MTP implementation.
875 @hide -->
876 <permission android:name="android.permission.ACCESS_MTP"
877 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800878 android:protectionLevel="signature|system"
Mike Lockwood10bc1112011-01-10 08:24:08 -0500879 android:label="@string/permlab_accessMtp"
880 android:description="@string/permdesc_accessMtp" />
881
Scott Main93e60b52013-06-10 11:05:55 -0700882 <!-- Allows access to hardware peripherals. Intended only for hardware testing.
883 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884 <permission android:name="android.permission.HARDWARE_TEST"
885 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
886 android:protectionLevel="signature"
887 android:label="@string/permlab_hardware_test"
888 android:description="@string/permdesc_hardware_test" />
889
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -0500890 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
891 @hide -->
892 <permission android:name="android.permission.NET_ADMIN"
893 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
894 android:protectionLevel="signature" />
895
Jeff Sharkey098d5802012-04-26 17:30:34 -0700896 <!-- Allows registration for remote audio playback. @hide -->
897 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
898 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
899 android:protectionLevel="signature" />
900
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 <!-- =========================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700902 <!-- Permissions associated with audio capture -->
903 <!-- =========================================== -->
904 <eat-comment />
905
906 <!-- Used for permissions that are associated with accessing
907 microphone audio from the device. Note that phone calls also capture audio
908 but are in a separate (more visible) permission group. -->
909 <permission-group android:name="android.permission-group.MICROPHONE"
910 android:label="@string/permgrouplab_microphone"
911 android:icon="@drawable/perm_group_microphone"
912 android:description="@string/permgroupdesc_microphone"
913 android:permissionGroupFlags="personalInfo"
914 android:priority="340" />
915
916 <!-- Allows an application to record audio -->
917 <permission android:name="android.permission.RECORD_AUDIO"
918 android:permissionGroup="android.permission-group.MICROPHONE"
919 android:protectionLevel="dangerous"
Dianne Hackborn84c71112013-04-17 11:18:10 -0700920 android:label="@string/permlab_recordAudio"
921 android:description="@string/permdesc_recordAudio" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700922
923
924 <!-- =========================================== -->
925 <!-- Permissions associated with camera and image capture -->
926 <!-- =========================================== -->
927 <eat-comment />
928
929 <!-- Used for permissions that are associated with accessing
930 camera or capturing images/video from the device. -->
931 <permission-group android:name="android.permission-group.CAMERA"
932 android:label="@string/permgrouplab_camera"
933 android:icon="@drawable/perm_group_camera"
934 android:description="@string/permgroupdesc_camera"
935 android:permissionGroupFlags="personalInfo"
936 android:priority="350" />
937
938 <!-- Required to be able to access the camera device.
939 <p>This will automatically enforce the <a
940 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
941 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
942 If you do not require all camera features or can properly operate if a camera
943 is not available, then you must modify your manifest as appropriate in order to
944 install on devices that don't support all camera features.</p> -->
945 <permission android:name="android.permission.CAMERA"
946 android:permissionGroup="android.permission-group.CAMERA"
947 android:protectionLevel="dangerous"
948 android:label="@string/permlab_camera"
949 android:description="@string/permdesc_camera" />
950
Igor Murashkinf640bb9b2013-04-23 14:32:19 -0700951 <!-- Allows disabling the transmit-indicator LED that is normally on when
952 a camera is in use by an application.
953 @hide -->
954 <permission android:name="android.permission.CAMERA_DISABLE_TRANSMIT_LED"
955 android:permissionGroup="android.permission-group.CAMERA"
956 android:protectionLevel="signature|system"
957 android:label="@string/permlab_cameraDisableTransmitLed"
958 android:description="@string/permdesc_cameraDisableTransmitLed" />
959
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700960 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800961 <!-- Permissions associated with telephony state -->
962 <!-- =========================================== -->
963 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700964
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 <!-- Used for permissions that are associated with accessing and modifyign
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700966 telephony state: placing calls, intercepting outgoing calls, reading
967 and modifying the phone state. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968 <permission-group android:name="android.permission-group.PHONE_CALLS"
969 android:label="@string/permgrouplab_phoneCalls"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700970 android:icon="@drawable/perm_group_phone_calls"
971 android:description="@string/permgroupdesc_phoneCalls"
972 android:permissionGroupFlags="personalInfo"
973 android:priority="370" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974
975 <!-- Allows an application to monitor, modify, or abort outgoing
976 calls. -->
977 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
978 android:permissionGroup="android.permission-group.PHONE_CALLS"
979 android:protectionLevel="dangerous"
980 android:label="@string/permlab_processOutgoingCalls"
981 android:description="@string/permdesc_processOutgoingCalls" />
982
983 <!-- Allows modification of the telephony state - power on, mmi, etc.
Scott Main93e60b52013-06-10 11:05:55 -0700984 Does not include placing calls.
985 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800986 <permission android:name="android.permission.MODIFY_PHONE_STATE"
987 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -0800988 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800989 android:label="@string/permlab_modifyPhoneState"
990 android:description="@string/permdesc_modifyPhoneState" />
991
Scott Main2681faa2012-11-01 12:18:31 -0700992 <!-- Allows read only access to phone state.
993 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
994 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
995 minSdkVersion}</a> and <a
996 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
997 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
998 grants your app this permission. If you don't need this permission, be sure your <a
999 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1000 targetSdkVersion}</a> is 4 or higher. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001001 <permission android:name="android.permission.READ_PHONE_STATE"
1002 android:permissionGroup="android.permission-group.PHONE_CALLS"
1003 android:protectionLevel="dangerous"
1004 android:label="@string/permlab_readPhoneState"
1005 android:description="@string/permdesc_readPhoneState" />
1006
Jake Hamby463f2212011-07-21 17:55:53 -07001007 <!-- Allows read access to privileged phone state.
1008 @hide Used internally. -->
1009 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
1010 android:permissionGroup="android.permission-group.PHONE_CALLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001011 android:protectionLevel="signature|system" />
Jake Hamby463f2212011-07-21 17:55:53 -07001012
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001013 <!-- Allows an application to initiate a phone call without going through
1014 the Dialer user interface for the user to confirm the call
1015 being placed. -->
1016 <permission android:name="android.permission.CALL_PHONE"
1017 android:permissionGroup="android.permission-group.PHONE_CALLS"
1018 android:protectionLevel="dangerous"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001019 android:permissionFlags="costsMoney"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001020 android:label="@string/permlab_callPhone"
1021 android:description="@string/permdesc_callPhone" />
1022
1023 <!-- Allows an application to use SIP service -->
1024 <permission android:name="android.permission.USE_SIP"
1025 android:permissionGroup="android.permission-group.PHONE_CALLS"
1026 android:protectionLevel="dangerous"
1027 android:description="@string/permdesc_use_sip"
1028 android:label="@string/permlab_use_sip" />
1029
San Mehat29b57e62009-04-23 09:18:32 -07001030 <!-- ================================== -->
1031 <!-- Permissions for sdcard interaction -->
1032 <!-- ================================== -->
1033 <eat-comment />
1034
1035 <!-- Group of permissions that are related to SD card access. -->
1036 <permission-group android:name="android.permission-group.STORAGE"
1037 android:label="@string/permgrouplab_storage"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001038 android:icon="@drawable/perm_group_storage"
1039 android:description="@string/permgroupdesc_storage"
1040 android:permissionGroupFlags="personalInfo"
1041 android:priority="240" />
San Mehat29b57e62009-04-23 09:18:32 -07001042
Scott Main2681faa2012-11-01 12:18:31 -07001043 <!-- Allows an application to read from external storage.
1044 <p>Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly
1045 granted this permission.</p>
1046 <p>Currently, this permission is not enforced and all apps still have access to read from
1047 external storage without this permission. That will change in a future release and apps
1048 will require this permission to read from external storage. So if your
1049 app reads from the external storage, you should add this permission to your app now
1050 to ensure that it continues to work on future versions of Android.</p>
1051 <p>You can test your app with the permission enforced by either running your app on the
1052 Android Emulator when running Android 4.1 or higher, or enabling <em>Protect USB
1053 storage</em> under Developer options in the Settings app on a device running Android 4.1 or
1054 higher.</p>
1055 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1056 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1057 minSdkVersion}</a> and <a
1058 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1059 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1060 grants your app this permission. If you don't need this permission, be sure your <a
1061 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1062 targetSdkVersion}</a> is 4 or higher.-->
Dianne Hackborn79245122012-03-12 10:51:26 -07001063 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001064 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn79245122012-03-12 10:51:26 -07001065 android:label="@string/permlab_sdcardRead"
1066 android:description="@string/permdesc_sdcardRead"
Adrian Ludwig361dfeb2012-06-01 19:57:57 -07001067 android:protectionLevel="normal" />
Dianne Hackborn79245122012-03-12 10:51:26 -07001068
Scott Main2681faa2012-11-01 12:18:31 -07001069 <!-- Allows an application to write to external storage.
1070 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1071 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1072 minSdkVersion}</a> and <a
1073 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1074 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1075 grants your app this permission. If you don't need this permission, be sure your <a
1076 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1077 targetSdkVersion}</a> is 4 or higher. -->
San Mehat5a3a77d2009-06-01 09:25:28 -07001078 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -07001079 android:permissionGroup="android.permission-group.STORAGE"
1080 android:label="@string/permlab_sdcardWrite"
1081 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -07001082 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -07001083
Mike Lockwood1e23db42011-04-22 07:05:21 -07001084 <!-- Allows an application to write to internal media storage
1085 @hide -->
1086 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
1087 android:permissionGroup="android.permission-group.STORAGE"
1088 android:label="@string/permlab_mediaStorageWrite"
1089 android:description="@string/permdesc_mediaStorageWrite"
Dianne Hackborne639da72012-02-21 15:11:13 -08001090 android:protectionLevel="signature|system" />
Mike Lockwood1e23db42011-04-22 07:05:21 -07001091
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001092 <!-- ================================== -->
1093 <!-- Permissions for screenlock -->
1094 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001096
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001097 <!-- Group of permissions that are related to the screenlock. -->
1098 <permission-group android:name="android.permission-group.SCREENLOCK"
Dianne Hackborn3ad27692013-03-18 10:53:09 -07001099 android:label="@string/permgrouplab_screenlock"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001100 android:icon="@drawable/perm_group_screenlock"
1101 android:permissionGroupFlags="personalInfo"
Dianne Hackborn3ad27692013-03-18 10:53:09 -07001102 android:description="@string/permgroupdesc_screenlock"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001103 android:priority="230" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001105 <!-- Allows applications to disable the keyguard -->
1106 <permission android:name="android.permission.DISABLE_KEYGUARD"
1107 android:permissionGroup="android.permission-group.SCREENLOCK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 android:protectionLevel="dangerous"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001109 android:description="@string/permdesc_disableKeyguard"
1110 android:label="@string/permlab_disableKeyguard" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001112 <!-- ================================== -->
1113 <!-- Permissions to access other installed applications -->
1114 <!-- ================================== -->
1115 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001117 <!-- Group of permissions that are related to the other applications
1118 installed on the system. Examples include such as listing
1119 running apps, or killing background processes. -->
1120 <permission-group android:name="android.permission-group.APP_INFO"
1121 android:label="@string/permgrouplab_appInfo"
1122 android:icon="@drawable/perm_group_app_info"
1123 android:description="@string/permgroupdesc_appInfo"
1124 android:priority="220" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125
1126 <!-- Allows an application to get information about the currently
Dianne Hackborn8238e712012-04-24 11:15:40 -07001127 or recently running tasks. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001129 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 android:protectionLevel="dangerous"
1131 android:label="@string/permlab_getTasks"
1132 android:description="@string/permdesc_getTasks" />
Dianne Hackborn8832c182012-09-17 17:20:24 -07001133 <!-- @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -07001134 across the users on the device, using singleton services and
1135 user-targeted broadcasts. This permission is not available to
1136 third party applications. -->
1137 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
1138 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1139 android:protectionLevel="signature|system|development"
1140 android:label="@string/permlab_interactAcrossUsers"
1141 android:description="@string/permdesc_interactAcrossUsers" />
1142
1143 <!-- @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
1144 that removes restrictions on where broadcasts can be sent and allows other
1145 types of interactions. -->
1146 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
1147 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1148 android:protectionLevel="signature"
1149 android:label="@string/permlab_interactAcrossUsersFull"
1150 android:description="@string/permdesc_interactAcrossUsersFull" />
1151
Dianne Hackborn8832c182012-09-17 17:20:24 -07001152 <!-- @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07001153 users on the device. This permission is not available to
1154 third party applications. -->
1155 <permission android:name="android.permission.MANAGE_USERS"
1156 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Amith Yamasani195263742012-08-21 15:40:12 -07001157 android:protectionLevel="signature|system"
Amith Yamasani2a003292012-08-14 18:25:45 -07001158 android:label="@string/permlab_manageUsers"
1159 android:description="@string/permdesc_manageUsers" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001160
Dianne Hackborn8238e712012-04-24 11:15:40 -07001161 <!-- Allows an application to get full detailed information about
1162 recently running tasks, with full fidelity to the real state.
1163 @hide -->
1164 <permission android:name="android.permission.GET_DETAILED_TASKS"
1165 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1166 android:protectionLevel="signature"
1167 android:label="@string/permlab_getDetailedTasks"
1168 android:description="@string/permdesc_getDetailedTasks" />
1169
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 <!-- Allows an application to change the Z-order of tasks -->
1171 <permission android:name="android.permission.REORDER_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001172 android:permissionGroup="android.permission-group.APP_INFO"
1173 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001174 android:label="@string/permlab_reorderTasks"
1175 android:description="@string/permdesc_reorderTasks" />
1176
Dianne Hackborn24a12102011-07-29 15:52:05 -07001177 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001178 <permission android:name="android.permission.REMOVE_TASKS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001179 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001180 android:protectionLevel="signature"
1181 android:label="@string/permlab_removeTasks"
1182 android:description="@string/permdesc_removeTasks" />
1183
Jeff Sharkey35be7562012-04-18 19:16:15 -07001184 <!-- Allows an application to start any activity, regardless of permission
1185 protection or exported state. @hide -->
1186 <permission android:name="android.permission.START_ANY_ACTIVITY"
1187 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1188 android:protectionLevel="signature"
1189 android:label="@string/permlab_startAnyActivity"
1190 android:description="@string/permdesc_startAnyActivity" />
1191
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001192 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
1193 API is no longer supported. -->
1194 <permission android:name="android.permission.RESTART_PACKAGES"
1195 android:permissionGroup="android.permission-group.APP_INFO"
1196 android:protectionLevel="normal"
1197 android:label="@string/permlab_killBackgroundProcesses"
1198 android:description="@string/permdesc_killBackgroundProcesses" />
1199
1200 <!-- Allows an application to call
1201 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
1202 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
1203 android:permissionGroup="android.permission-group.APP_INFO"
1204 android:protectionLevel="normal"
1205 android:label="@string/permlab_killBackgroundProcesses"
1206 android:description="@string/permdesc_killBackgroundProcesses" />
1207
1208 <!-- ================================== -->
1209 <!-- Permissions affecting the display of other applications -->
1210 <!-- ================================== -->
1211 <eat-comment />
1212
1213 <!-- Group of permissions that allow manipulation of how
1214 another application displays UI to the user. -->
1215 <permission-group android:name="android.permission-group.DISPLAY"
1216 android:label="@string/permgrouplab_display"
1217 android:icon="@drawable/perm_group_display"
1218 android:description="@string/permgroupdesc_display"
1219 android:priority="190"/>
1220
1221 <!-- Allows an application to open windows using the type
1222 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
1223 shown on top of all other applications. Very few applications
1224 should use this permission; these windows are intended for
1225 system-level interaction with the user. -->
1226 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
1227 android:permissionGroup="android.permission-group.DISPLAY"
1228 android:protectionLevel="dangerous"
1229 android:label="@string/permlab_systemAlertWindow"
1230 android:description="@string/permdesc_systemAlertWindow" />
1231
1232 <!-- ================================== -->
1233 <!-- Permissions affecting the system wallpaper -->
1234 <!-- ================================== -->
1235 <eat-comment />
1236
1237 <!-- Group of permissions that allow manipulation of how
1238 another application displays UI to the user. -->
1239 <permission-group android:name="android.permission-group.WALLPAPER"
1240 android:label="@string/permgrouplab_wallpaper"
1241 android:icon="@drawable/perm_group_wallpaper"
1242 android:description="@string/permgroupdesc_wallpaper"
1243 android:priority="150" />
1244
1245 <!-- Allows applications to set the wallpaper -->
1246 <permission android:name="android.permission.SET_WALLPAPER"
1247 android:permissionGroup="android.permission-group.WALLPAPER"
1248 android:protectionLevel="normal"
1249 android:label="@string/permlab_setWallpaper"
1250 android:description="@string/permdesc_setWallpaper" />
1251
1252 <!-- Allows applications to set the wallpaper hints -->
1253 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
1254 android:permissionGroup="android.permission-group.WALLPAPER"
1255 android:protectionLevel="normal"
1256 android:label="@string/permlab_setWallpaperHints"
1257 android:description="@string/permdesc_setWallpaperHints" />
1258
1259 <!-- ============================================ -->
1260 <!-- Permissions for changing the system clock -->
1261 <!-- ============================================ -->
1262 <eat-comment />
1263
1264 <!-- Group of permissions that are related to system clock. -->
1265 <permission-group android:name="android.permission-group.SYSTEM_CLOCK"
1266 android:label="@string/permgrouplab_systemClock"
1267 android:icon="@drawable/perm_group_system_clock"
1268 android:description="@string/permgroupdesc_systemClock"
1269 android:priority="140" />
1270
Scott Main93e60b52013-06-10 11:05:55 -07001271 <!-- Allows applications to set the system time.
1272 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001273 <permission android:name="android.permission.SET_TIME"
1274 android:protectionLevel="signature|system"
1275 android:label="@string/permlab_setTime"
1276 android:description="@string/permdesc_setTime" />
1277
1278 <!-- Allows applications to set the system time zone -->
1279 <permission android:name="android.permission.SET_TIME_ZONE"
1280 android:permissionGroup="android.permission-group.SYSTEM_CLOCK"
1281 android:protectionLevel="normal"
1282 android:label="@string/permlab_setTimeZone"
1283 android:description="@string/permdesc_setTimeZone" />
1284
1285 <!-- ==================================================== -->
1286 <!-- Permissions related to changing status bar -->
1287 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -07001288 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001289
1290 <!-- Used for permissions that change the status bar -->
1291 <permission-group android:name="android.permission-group.STATUS_BAR"
1292 android:label="@string/permgrouplab_statusBar"
1293 android:icon="@drawable/perm_group_status_bar"
1294 android:description="@string/permgroupdesc_statusBar"
1295 android:priority="110" />
1296
1297 <!-- Allows an application to expand or collapse the status bar. -->
1298 <permission android:name="android.permission.EXPAND_STATUS_BAR"
1299 android:permissionGroup="android.permission-group.STATUS_BAR"
1300 android:protectionLevel="normal"
1301 android:label="@string/permlab_expandStatusBar"
1302 android:description="@string/permdesc_expandStatusBar" />
1303
1304 <!-- ==================================================== -->
1305 <!-- Permissions related to accessing sync settings -->
1306 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -07001307 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001308
1309 <!-- Used for permissions that access the sync settings or sync
1310 related information. -->
1311 <permission-group android:name="android.permission-group.SYNC_SETTINGS"
1312 android:label="@string/permgrouplab_syncSettings"
1313 android:icon="@drawable/perm_group_sync_settings"
1314 android:description="@string/permgroupdesc_syncSettings"
1315 android:priority="120" />
1316
1317 <!-- Allows applications to read the sync settings -->
1318 <permission android:name="android.permission.READ_SYNC_SETTINGS"
1319 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1320 android:protectionLevel="normal"
1321 android:description="@string/permdesc_readSyncSettings"
1322 android:label="@string/permlab_readSyncSettings" />
1323
1324 <!-- Allows applications to write the sync settings -->
1325 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
1326 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1327 android:protectionLevel="normal"
1328 android:description="@string/permdesc_writeSyncSettings"
1329 android:label="@string/permlab_writeSyncSettings" />
1330
1331 <!-- Allows applications to read the sync stats -->
1332 <permission android:name="android.permission.READ_SYNC_STATS"
1333 android:permissionGroup="android.permission-group.SYNC_SETTINGS"
1334 android:protectionLevel="normal"
1335 android:description="@string/permdesc_readSyncStats"
1336 android:label="@string/permlab_readSyncStats" />
1337
1338
1339 <!-- ============================================ -->
1340 <!-- Permissions for low-level system interaction -->
1341 <!-- ============================================ -->
1342 <eat-comment />
1343
1344 <!-- Group of permissions that are related to system APIs. Many
1345 of these are not permissions the user will be expected to understand,
1346 and such permissions should generally be marked as "normal" protection
1347 level so they don't get displayed. This can also, however, be used
1348 for miscellaneous features that provide access to the operating system,
1349 such as writing the global system settings. -->
1350 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
1351 android:label="@string/permgrouplab_systemTools"
1352 android:icon="@drawable/perm_group_system_tools"
1353 android:description="@string/permgroupdesc_systemTools"
1354 android:priority="100" />
1355
1356 <!-- @hide Change the screen compatibility mode of applications -->
1357 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
1358 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1359 android:protectionLevel="signature"
1360 android:label="@string/permlab_setScreenCompatibility"
1361 android:description="@string/permdesc_setScreenCompatibility" />
1362
1363 <!-- Allows an application to access all multi-user external storage @hide -->
1364 <permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE"
1365 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1366 android:label="@string/permlab_sdcardAccessAll"
1367 android:description="@string/permdesc_sdcardAccessAll"
1368 android:protectionLevel="signature" />
1369
1370 <!-- Allows an application to modify the current configuration, such
1371 as locale. -->
1372 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001373 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001374 android:protectionLevel="signature|system|development"
1375 android:label="@string/permlab_changeConfiguration"
1376 android:description="@string/permdesc_changeConfiguration" />
1377
1378 <!-- Allows an application to read or write the system settings. -->
1379 <permission android:name="android.permission.WRITE_SETTINGS"
1380 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1381 android:protectionLevel="normal"
1382 android:label="@string/permlab_writeSettings"
1383 android:description="@string/permdesc_writeSettings" />
1384
Scott Main93e60b52013-06-10 11:05:55 -07001385 <!-- Allows an application to modify the Google service map.
1386 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001387 <permission android:name="android.permission.WRITE_GSERVICES"
1388 android:protectionLevel="signature|system"
1389 android:label="@string/permlab_writeGservices"
1390 android:description="@string/permdesc_writeGservices" />
1391
Dianne Hackborn03abb812010-01-04 18:43:19 -08001392 <!-- Allows an application to call
1393 {@link android.app.ActivityManager#forceStopPackage}.
1394 @hide -->
1395 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
1396 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1397 android:protectionLevel="signature"
1398 android:label="@string/permlab_forceStopPackages"
1399 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400
Dianne Hackborn24a12102011-07-29 15:52:05 -07001401 <!-- @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001402 An active window is the window that has fired an accessibility event. -->
1403 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
1404 android:permissionGroup="android.permission-group.PERSONAL_INFO"
Dianne Hackborne639da72012-02-21 15:11:13 -08001405 android:protectionLevel="signature|system"
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07001406 android:label="@string/permlab_retrieve_window_content"
1407 android:description="@string/permdesc_retrieve_window_content" />
1408
Scott Main93e60b52013-06-10 11:05:55 -07001409 <!-- Modify the global animation scaling factor.
1410 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 <permission android:name="android.permission.SET_ANIMATION_SCALE"
1412 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornfd5015b2012-04-30 16:33:56 -07001413 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001414 android:label="@string/permlab_setAnimationScale"
1415 android:description="@string/permdesc_setAnimationScale" />
1416
Dianne Hackbornd3efa392010-09-01 17:34:12 -07001417 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001418 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001420 android:permissionGroup="android.permission-group.APP_INFO"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001421 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001422 android:label="@string/permlab_persistentActivity"
1423 android:description="@string/permdesc_persistentActivity" />
1424
1425 <!-- Allows an application to find out the space used by any package. -->
1426 <permission android:name="android.permission.GET_PACKAGE_SIZE"
1427 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1428 android:protectionLevel="normal"
1429 android:label="@string/permlab_getPackageSize"
1430 android:description="@string/permdesc_getPackageSize" />
1431
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08001432 <!-- @deprecated No longer useful, see
1433 {@link android.content.pm.PackageManager#addPackageToPreferred}
1434 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
1436 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn2ee89ea2010-03-10 18:27:09 -08001437 android:protectionLevel="signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 android:label="@string/permlab_setPreferredApplications"
1439 android:description="@string/permdesc_setPreferredApplications" />
1440
1441 <!-- Allows an application to receive the
1442 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
1443 broadcast after the system finishes booting. If you don't
1444 request this permission, you will not receive the broadcast at
1445 that time. Though holding this permission does not have any
1446 security implications, it can have a negative impact on the
1447 user experience by increasing the amount of time it takes the
1448 system to start and allowing applications to have themselves
1449 running without the user being aware of them. As such, you must
1450 explicitly declare your use of this facility to make that visible
1451 to the user. -->
1452 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001453 android:permissionGroup="android.permission-group.APP_INFO"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 android:protectionLevel="normal"
1455 android:label="@string/permlab_receiveBootCompleted"
1456 android:description="@string/permdesc_receiveBootCompleted" />
1457
1458 <!-- Allows an application to broadcast sticky intents. These are
1459 broadcasts whose data is held by the system after being finished,
1460 so that clients can quickly retrieve that data without having
1461 to wait for the next broadcast. -->
1462 <permission android:name="android.permission.BROADCAST_STICKY"
1463 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1464 android:protectionLevel="normal"
1465 android:label="@string/permlab_broadcastSticky"
1466 android:description="@string/permdesc_broadcastSticky" />
1467
Scott Main93e60b52013-06-10 11:05:55 -07001468 <!-- Allows mounting and unmounting file systems for removable storage.
1469 <p>Not for use by third-party applications.-->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
1471 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001472 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001473 android:label="@string/permlab_mount_unmount_filesystems"
1474 android:description="@string/permdesc_mount_unmount_filesystems" />
1475
Scott Main93e60b52013-06-10 11:05:55 -07001476 <!-- Allows formatting file systems for removable storage.
1477 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
1479 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001480 android:protectionLevel="system|signature"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 android:label="@string/permlab_mount_format_filesystems"
1482 android:description="@string/permdesc_mount_format_filesystems" />
1483
San Mehat02735bc2010-01-26 15:18:08 -08001484 <!-- Allows access to ASEC non-destructive API calls
1485 @hide -->
1486 <permission android:name="android.permission.ASEC_ACCESS"
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_access"
1490 android:description="@string/permdesc_asec_access" />
1491
1492 <!-- Allows creation of ASEC volumes
1493 @hide -->
1494 <permission android:name="android.permission.ASEC_CREATE"
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_create"
1498 android:description="@string/permdesc_asec_create" />
1499
1500 <!-- Allows destruction of ASEC volumes
1501 @hide -->
1502 <permission android:name="android.permission.ASEC_DESTROY"
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_destroy"
1506 android:description="@string/permdesc_asec_destroy" />
1507
1508 <!-- Allows mount / unmount of ASEC volumes
1509 @hide -->
1510 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
1511 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001512 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001513 android:label="@string/permlab_asec_mount_unmount"
1514 android:description="@string/permdesc_asec_mount_unmount" />
1515
1516 <!-- Allows rename of ASEC volumes
1517 @hide -->
1518 <permission android:name="android.permission.ASEC_RENAME"
1519 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
San Mehatcbf953e2010-03-22 10:30:13 -07001520 android:protectionLevel="signature"
San Mehat02735bc2010-01-26 15:18:08 -08001521 android:label="@string/permlab_asec_rename"
1522 android:description="@string/permdesc_asec_rename" />
1523
Scott Main93e60b52013-06-10 11:05:55 -07001524 <!-- Allows applications to write the apn settings.
1525 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001526 <permission android:name="android.permission.WRITE_APN_SETTINGS"
1527 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08001528 android:protectionLevel="signature|system"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001529 android:description="@string/permdesc_writeApnSettings"
1530 android:label="@string/permlab_writeApnSettings" />
1531
Fred Quintana60307342009-03-24 22:48:12 -07001532 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533 ContentProvider. -->
1534 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1535 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1536 android:label="@string/permlab_subscribedFeedsRead"
1537 android:description="@string/permdesc_subscribedFeedsRead"
1538 android:protectionLevel="normal" />
1539 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1540 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1541 android:label="@string/permlab_subscribedFeedsWrite"
1542 android:description="@string/permdesc_subscribedFeedsWrite"
1543 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -07001544
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545 <!-- Allows applications to change network connectivity state -->
1546 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001547 android:permissionGroup="android.permission-group.NETWORK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001548 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001549 android:description="@string/permdesc_changeNetworkState"
1550 android:label="@string/permlab_changeNetworkState" />
1551
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 <!-- Allows an application to clear the caches of all installed
1553 applications on the device. -->
1554 <permission android:name="android.permission.CLEAR_APP_CACHE"
1555 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1556 android:protectionLevel="dangerous"
1557 android:label="@string/permlab_clearAppCache"
1558 android:description="@string/permdesc_clearAppCache" />
1559
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001560 <!-- Allows an application to use any media decoder when decoding for playback
1561 @hide -->
1562 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborne639da72012-02-21 15:11:13 -08001563 android:protectionLevel="signature|system"
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08001564 android:label="@string/permlab_anyCodecForPlayback"
1565 android:description="@string/permdesc_anyCodecForPlayback" />
1566
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 <!-- ========================================= -->
1568 <!-- Permissions for special development tools -->
1569 <!-- ========================================= -->
1570 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001571
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001572 <!-- Group of permissions that are related to development features. These
Scott Main93e60b52013-06-10 11:05:55 -07001573 are not permissions that should appear in third-party applications; they
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001574 protect APIs that are intended only to be used for development
1575 purposes. -->
1576 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
1577 android:label="@string/permgrouplab_developmentTools"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001578 android:description="@string/permgroupdesc_developmentTools"
1579 android:priority="310" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580
Scott Main93e60b52013-06-10 11:05:55 -07001581 <!-- Allows an application to read or write the secure system settings.
1582 <p>Not for use by third-party applications. -->
Dianne Hackborne639da72012-02-21 15:11:13 -08001583 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
1584 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1585 android:protectionLevel="signature|system|development"
1586 android:label="@string/permlab_writeSecureSettings"
1587 android:description="@string/permdesc_writeSecureSettings" />
1588
Scott Main93e60b52013-06-10 11:05:55 -07001589 <!-- Allows an application to retrieve state dump information from system services.
1590 <p>Not for use by third-party applications. -->
Dianne Hackborne639da72012-02-21 15:11:13 -08001591 <permission android:name="android.permission.DUMP"
1592 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1593 android:protectionLevel="signature|system|development"
1594 android:label="@string/permlab_dump"
1595 android:description="@string/permdesc_dump" />
1596
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001597 <!-- Allows an application to read the low-level system log files.
Scott Main93e60b52013-06-10 11:05:55 -07001598 <p>Not for use by third-party applications, because
1599 Log entries can contain the user's private information. -->
Nick Kralevichcb5863e2012-03-23 10:06:06 -07001600 <permission android:name="android.permission.READ_LOGS"
1601 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1602 android:protectionLevel="signature|system|development"
1603 android:label="@string/permlab_readLogs"
1604 android:description="@string/permdesc_readLogs" />
1605
Scott Main93e60b52013-06-10 11:05:55 -07001606 <!-- Configure an application for debugging.
1607 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001608 <permission android:name="android.permission.SET_DEBUG_APP"
1609 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001610 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001611 android:label="@string/permlab_setDebugApp"
1612 android:description="@string/permdesc_setDebugApp" />
1613
1614 <!-- Allows an application to set the maximum number of (not needed)
Scott Main93e60b52013-06-10 11:05:55 -07001615 application processes that can be running.
1616 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001617 <permission android:name="android.permission.SET_PROCESS_LIMIT"
1618 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001619 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001620 android:label="@string/permlab_setProcessLimit"
1621 android:description="@string/permdesc_setProcessLimit" />
1622
1623 <!-- Allows an application to control whether activities are immediately
Scott Main93e60b52013-06-10 11:05:55 -07001624 finished when put in the background.
1625 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626 <permission android:name="android.permission.SET_ALWAYS_FINISH"
1627 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001628 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 android:label="@string/permlab_setAlwaysFinish"
1630 android:description="@string/permdesc_setAlwaysFinish" />
1631
Scott Main93e60b52013-06-10 11:05:55 -07001632 <!-- Allow an application to request that a signal be sent to all persistent processes.
1633 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001634 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
1635 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
Dianne Hackborne8241202012-04-06 13:39:09 -07001636 android:protectionLevel="signature|system|development"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001637 android:label="@string/permlab_signalPersistentProcesses"
1638 android:description="@string/permdesc_signalPersistentProcesses" />
1639
1640 <!-- ==================================== -->
1641 <!-- Private (signature-only) permissions -->
1642 <!-- ==================================== -->
1643 <eat-comment />
1644
Scott Main93e60b52013-06-10 11:05:55 -07001645 <!-- Allows applications to RW to diagnostic resources.
1646 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001647 <permission android:name="android.permission.DIAGNOSTIC"
1648 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1649 android:protectionLevel="signature"
1650 android:description="@string/permdesc_diagnostic"
1651 android:label="@string/permlab_diagnostic" />
1652
1653 <!-- Allows an application to open, close, or disable the status bar
Scott Main93e60b52013-06-10 11:05:55 -07001654 and its icons.
1655 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001656 <permission android:name="android.permission.STATUS_BAR"
1657 android:label="@string/permlab_statusBar"
1658 android:description="@string/permdesc_statusBar"
Dianne Hackborne639da72012-02-21 15:11:13 -08001659 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001660
Joe Onorato8bc6c512010-06-04 16:21:12 -04001661 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
1662 @hide -->
1663 <permission android:name="android.permission.STATUS_BAR_SERVICE"
1664 android:label="@string/permlab_statusBarService"
1665 android:description="@string/permdesc_statusBarService"
1666 android:protectionLevel="signature" />
1667
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001668 <!-- Allows an application to force a BACK operation on whatever is the
Scott Main93e60b52013-06-10 11:05:55 -07001669 top activity.
1670 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001671 <permission android:name="android.permission.FORCE_BACK"
1672 android:label="@string/permlab_forceBack"
1673 android:description="@string/permdesc_forceBack"
1674 android:protectionLevel="signature" />
1675
Scott Main93e60b52013-06-10 11:05:55 -07001676 <!-- Allows an application to update device statistics.
1677 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001678 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07001679 android:label="@string/permlab_updateBatteryStats"
1680 android:description="@string/permdesc_updateBatteryStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08001681 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001682
Dianne Hackborn35654b62013-01-14 17:38:02 -08001683 <!-- @hide Allows an application to collect battery statistics -->
1684 <permission android:name="android.permission.GET_APP_OPS_STATS"
1685 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1686 android:label="@string/permlab_getAppOpsStats"
1687 android:description="@string/permdesc_getAppOpsStats"
1688 android:protectionLevel="signature|system|development" />
1689
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001690 <!-- Allows an application to update application operation statistics. Not for
1691 use by third party apps. @hide -->
1692 <permission android:name="android.permission.UPDATE_APP_OPS_STATS"
1693 android:label="@string/permlab_updateAppOpsStats"
1694 android:description="@string/permdesc_updateAppOpsStats"
1695 android:protectionLevel="signature|system" />
1696
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001697 <!-- Allows an application to open windows that are for use by parts
Scott Main93e60b52013-06-10 11:05:55 -07001698 of the system user interface.
1699 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001700 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
1701 android:label="@string/permlab_internalSystemWindow"
1702 android:description="@string/permdesc_internalSystemWindow"
1703 android:protectionLevel="signature" />
1704
1705 <!-- Allows an application to manage (create, destroy,
Scott Main93e60b52013-06-10 11:05:55 -07001706 Z-order) application tokens in the window manager.
1707 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001708 <permission android:name="android.permission.MANAGE_APP_TOKENS"
1709 android:label="@string/permlab_manageAppTokens"
1710 android:description="@string/permdesc_manageAppTokens"
1711 android:protectionLevel="signature" />
1712
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07001713 <!-- @hide Allows the application to temporarily freeze the screen for a
1714 full-screen transition. -->
1715 <permission android:name="android.permission.FREEZE_SCREEN"
1716 android:label="@string/permlab_freezeScreen"
1717 android:description="@string/permdesc_freezeScreen"
1718 android:protectionLevel="signature" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001719
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001720 <!-- Allows an application to inject user events (keys, touch, trackball)
1721 into the event stream and deliver them to ANY window. Without this
1722 permission, you can only deliver events to windows in your own process.
Scott Main93e60b52013-06-10 11:05:55 -07001723 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001724 <permission android:name="android.permission.INJECT_EVENTS"
1725 android:label="@string/permlab_injectEvents"
1726 android:description="@string/permdesc_injectEvents"
1727 android:protectionLevel="signature" />
1728
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001729 <!-- @hide Allows an application to register an input filter which filters the stream
1730 of user events (keys, touch, trackball) before they are dispatched to any window. -->
1731 <permission android:name="android.permission.FILTER_EVENTS"
1732 android:label="@string/permlab_filter_events"
1733 android:description="@string/permdesc_filter_events"
1734 android:protectionLevel="signature" />
1735
1736 <!-- @hide Allows an application to retrieve info for a window from the window manager. -->
1737 <permission android:name="android.permission.RETRIEVE_WINDOW_INFO"
1738 android:label="@string/permlab_retrieve_window_info"
1739 android:description="@string/permdesc_retrieve_window_info"
1740 android:protectionLevel="signature" />
1741
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07001742 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
1743 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
1744 android:label="@string/permlab_temporary_enable_accessibility"
1745 android:description="@string/permdesc_temporary_enable_accessibility"
1746 android:protectionLevel="signature" />
1747
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001748 <!-- @hide Allows an application to magnify the content of a display. -->
1749 <permission android:name="android.permission.MAGNIFY_DISPLAY"
1750 android:label="@string/permlab_magnify_display"
1751 android:description="@string/permdesc_magnify_display"
1752 android:protectionLevel="signature" />
1753
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001754 <!-- Allows an application to watch and control how activities are
1755 started globally in the system. Only for is in debugging
Scott Main93e60b52013-06-10 11:05:55 -07001756 (usually the monkey command).
1757 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001758 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
1759 android:label="@string/permlab_runSetActivityWatcher"
1760 android:description="@string/permdesc_runSetActivityWatcher"
1761 android:protectionLevel="signature" />
1762
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001763 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07001764 to put the higher-level system there into a shutdown state.
1765 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07001766 <permission android:name="android.permission.SHUTDOWN"
1767 android:label="@string/permlab_shutdown"
1768 android:description="@string/permdesc_shutdown"
Dianne Hackborne639da72012-02-21 15:11:13 -08001769 android:protectionLevel="signature|system" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07001770
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001771 <!-- Allows an application to tell the activity manager to temporarily
1772 stop application switches, putting it into a special mode that
1773 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07001774 critical UI such as the home screen.
1775 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001776 <permission android:name="android.permission.STOP_APP_SWITCHES"
1777 android:label="@string/permlab_stopAppSwitches"
1778 android:description="@string/permdesc_stopAppSwitches"
Dianne Hackborne639da72012-02-21 15:11:13 -08001779 android:protectionLevel="signature|system" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001780
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08001781 <!-- Allows an application to retrieve private information about
Scott Main93e60b52013-06-10 11:05:55 -07001782 the current top activity, such as any assist context it can provide.
1783 <p>Not for use by third-party applications. -->
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08001784 <permission android:name="android.permission.GET_TOP_ACTIVITY_INFO"
1785 android:label="@string/permlab_getTopActivityInfo"
1786 android:description="@string/permdesc_getTopActivityInfo"
1787 android:protectionLevel="signature" />
1788
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001789 <!-- Allows an application to retrieve the current state of keys and
Scott Main93e60b52013-06-10 11:05:55 -07001790 switches.
1791 <p>Not for use by third-party applications.
Jeff Brownac143512012-04-05 18:57:33 -07001792 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001793 <permission android:name="android.permission.READ_INPUT_STATE"
1794 android:label="@string/permlab_readInputState"
1795 android:description="@string/permdesc_readInputState"
1796 android:protectionLevel="signature" />
1797
Dianne Hackbornd6847842010-01-12 18:14:19 -08001798 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
1799 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800 <permission android:name="android.permission.BIND_INPUT_METHOD"
1801 android:label="@string/permlab_bindInputMethod"
1802 android:description="@string/permdesc_bindInputMethod"
1803 android:protectionLevel="signature" />
1804
Svetoslav38228962013-01-29 01:04:35 -08001805 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Dianne Hackborn636fd522012-06-05 17:38:50 -07001806 to ensure that only the system can bind to it. -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07001807 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1808 android:label="@string/permlab_bindAccessibilityService"
1809 android:description="@string/permdesc_bindAccessibilityService"
1810 android:protectionLevel="signature" />
1811
satok988323c2011-06-22 16:38:13 +09001812 <!-- Must be required by a TextService (e.g. SpellCheckerService)
1813 to ensure that only the system can bind to it. -->
1814 <permission android:name="android.permission.BIND_TEXT_SERVICE"
1815 android:label="@string/permlab_bindTextService"
1816 android:description="@string/permdesc_bindTextService"
1817 android:protectionLevel="signature" />
1818
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001819 <!-- Must be required by an {@link android.net.VpnService},
Chia-chi Yehd0d85f22011-08-08 18:26:28 -07001820 to ensure that only the system can bind to it. -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001821 <permission android:name="android.permission.BIND_VPN_SERVICE"
1822 android:label="@string/permlab_bindVpnService"
1823 android:description="@string/permdesc_bindVpnService"
1824 android:protectionLevel="signature" />
1825
Dianne Hackbornd6847842010-01-12 18:14:19 -08001826 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
1827 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001828 <permission android:name="android.permission.BIND_WALLPAPER"
1829 android:label="@string/permlab_bindWallpaper"
1830 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborne639da72012-02-21 15:11:13 -08001831 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001832
Dianne Hackbornd6847842010-01-12 18:14:19 -08001833 <!-- Must be required by device administration receiver, to ensure that only the
1834 system can interact with it. -->
1835 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
1836 android:label="@string/permlab_bindDeviceAdmin"
1837 android:description="@string/permdesc_bindDeviceAdmin"
1838 android:protectionLevel="signature" />
1839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001840 <!-- Allows low-level access to setting the orientation (actually
Scott Main93e60b52013-06-10 11:05:55 -07001841 rotation) of the screen.
1842 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001843 <permission android:name="android.permission.SET_ORIENTATION"
1844 android:label="@string/permlab_setOrientation"
1845 android:description="@string/permdesc_setOrientation"
1846 android:protectionLevel="signature" />
1847
Jeff Brown1a84fd12011-06-02 01:26:32 -07001848 <!-- Allows low-level access to setting the pointer speed.
Scott Main93e60b52013-06-10 11:05:55 -07001849 <p>Not for use by third-party applications. -->
Jeff Brown1a84fd12011-06-02 01:26:32 -07001850 <permission android:name="android.permission.SET_POINTER_SPEED"
1851 android:label="@string/permlab_setPointerSpeed"
1852 android:description="@string/permdesc_setPointerSpeed"
1853 android:protectionLevel="signature" />
1854
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001855 <!-- Allows low-level access to setting the keyboard layout.
Scott Main93e60b52013-06-10 11:05:55 -07001856 <p>Not for use by third-party applications.
Jeff Brown507f5582012-05-07 19:06:06 -07001857 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001858 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
1859 android:label="@string/permlab_setKeyboardLayout"
1860 android:description="@string/permdesc_setKeyboardLayout"
1861 android:protectionLevel="signature" />
1862
Scott Main93e60b52013-06-10 11:05:55 -07001863 <!-- Allows an application to install packages.
1864 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001865 <permission android:name="android.permission.INSTALL_PACKAGES"
1866 android:label="@string/permlab_installPackages"
1867 android:description="@string/permdesc_installPackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001868 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001869
Scott Main93e60b52013-06-10 11:05:55 -07001870 <!-- Allows an application to clear user data.
1871 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001872 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1873 android:label="@string/permlab_clearAppUserData"
1874 android:description="@string/permdesc_clearAppUserData"
1875 android:protectionLevel="signature" />
1876
Scott Main93e60b52013-06-10 11:05:55 -07001877 <!-- Allows an application to delete cache files.
1878 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001879 <permission android:name="android.permission.DELETE_CACHE_FILES"
1880 android:label="@string/permlab_deleteCacheFiles"
1881 android:description="@string/permdesc_deleteCacheFiles"
Dianne Hackborne639da72012-02-21 15:11:13 -08001882 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001883
Scott Main93e60b52013-06-10 11:05:55 -07001884 <!-- Allows an application to delete packages.
1885 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001886 <permission android:name="android.permission.DELETE_PACKAGES"
1887 android:label="@string/permlab_deletePackages"
1888 android:description="@string/permdesc_deletePackages"
Dianne Hackborne639da72012-02-21 15:11:13 -08001889 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001890
Jeff Brownec7c78f2010-03-30 23:37:25 -07001891 <!-- Allows an application to move location of installed package.
1892 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001893 <permission android:name="android.permission.MOVE_PACKAGE"
1894 android:label="@string/permlab_movePackage"
1895 android:description="@string/permdesc_movePackage"
Dianne Hackborne639da72012-02-21 15:11:13 -08001896 android:protectionLevel="signature|system" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08001897
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001898 <!-- Allows an application to change whether an application component (other than its own) is
Scott Main93e60b52013-06-10 11:05:55 -07001899 enabled or not.
1900 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001901 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1902 android:label="@string/permlab_changeComponentState"
1903 android:description="@string/permdesc_changeComponentState"
Dianne Hackborne639da72012-02-21 15:11:13 -08001904 android:protectionLevel="signature|system" />
1905
1906 <!-- @hide Allows an application to grant or revoke specific permissions. -->
1907 <permission android:name="android.permission.GRANT_REVOKE_PERMISSIONS"
1908 android:label="@string/permlab_grantRevokePermissions"
1909 android:description="@string/permdesc_grantRevokePermissions"
1910 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001911
Scott Main93e60b52013-06-10 11:05:55 -07001912 <!-- Allows an application to use SurfaceFlinger's low level features.
1913 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1915 android:label="@string/permlab_accessSurfaceFlinger"
1916 android:description="@string/permdesc_accessSurfaceFlinger"
1917 android:protectionLevel="signature" />
1918
1919 <!-- Allows an application to take screen shots and more generally
Scott Main93e60b52013-06-10 11:05:55 -07001920 get access to the frame buffer data.
1921 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001922 <permission android:name="android.permission.READ_FRAME_BUFFER"
1923 android:label="@string/permlab_readFrameBuffer"
1924 android:description="@string/permdesc_readFrameBuffer"
Dianne Hackborne639da72012-02-21 15:11:13 -08001925 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001926
Jeff Brown4b71e4e2012-09-07 17:41:02 -07001927 <!-- Allows an application to configure and connect to Wifi displays
1928 @hide -->
1929 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
1930 android:label="@string/permlab_configureWifiDisplay"
1931 android:description="@string/permdesc_configureWifiDisplay"
1932 android:protectionLevel="signature" />
1933
1934 <!-- Allows an application to control low-level features of Wifi displays
1935 such as opening an RTSP socket. This permission should only be used
1936 by the display manager.
1937 @hide -->
1938 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
1939 android:label="@string/permlab_controlWifiDisplay"
1940 android:description="@string/permdesc_controlWifiDisplay"
1941 android:protectionLevel="signature" />
1942
Scott Main93e60b52013-06-10 11:05:55 -07001943 <!-- Required to be able to disable the device (very dangerous!).
1944 <p>Not for use by third-party applications.. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001945 <permission android:name="android.permission.BRICK"
1946 android:label="@string/permlab_brick"
1947 android:description="@string/permdesc_brick"
1948 android:protectionLevel="signature" />
1949
Scott Main93e60b52013-06-10 11:05:55 -07001950 <!-- Required to be able to reboot the device.
1951 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001952 <permission android:name="android.permission.REBOOT"
1953 android:label="@string/permlab_reboot"
1954 android:description="@string/permdesc_reboot"
Dianne Hackborne639da72012-02-21 15:11:13 -08001955 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001956
Scott Main93e60b52013-06-10 11:05:55 -07001957 <!-- Allows low-level access to power management.
1958 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001959 <permission android:name="android.permission.DEVICE_POWER"
1960 android:label="@string/permlab_devicePower"
1961 android:description="@string/permdesc_devicePower"
1962 android:protectionLevel="signature" />
1963
Dianne Hackborn8832c182012-09-17 17:20:24 -07001964 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07001965 <permission android:name="android.permission.NET_TUNNELING"
1966 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1967 android:protectionLevel="signature" />
1968
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001969 <!-- Run as a manufacturer test application, running as the root user.
Scott Main93e60b52013-06-10 11:05:55 -07001970 Only available when the device is running in manufacturer test mode.
1971 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 <permission android:name="android.permission.FACTORY_TEST"
1973 android:label="@string/permlab_factoryTest"
1974 android:description="@string/permdesc_factoryTest"
1975 android:protectionLevel="signature" />
1976
1977 <!-- Allows an application to broadcast a notification that an application
Scott Main93e60b52013-06-10 11:05:55 -07001978 package has been removed.
1979 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1981 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1982 android:label="@string/permlab_broadcastPackageRemoved"
1983 android:description="@string/permdesc_broadcastPackageRemoved"
1984 android:protectionLevel="signature" />
1985
Scott Main93e60b52013-06-10 11:05:55 -07001986 <!-- Allows an application to broadcast an SMS receipt notification.
1987 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 <permission android:name="android.permission.BROADCAST_SMS"
1989 android:permissionGroup="android.permission-group.MESSAGES"
1990 android:label="@string/permlab_broadcastSmsReceived"
1991 android:description="@string/permdesc_broadcastSmsReceived"
1992 android:protectionLevel="signature" />
1993
Scott Main93e60b52013-06-10 11:05:55 -07001994 <!-- Allows an application to broadcast a WAP PUSH receipt notification.
1995 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001996 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1997 android:permissionGroup="android.permission-group.MESSAGES"
1998 android:label="@string/permlab_broadcastWapPush"
1999 android:description="@string/permdesc_broadcastWapPush"
2000 android:protectionLevel="signature" />
2001
Scott Main93e60b52013-06-10 11:05:55 -07002002 <!-- Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 <permission android:name="android.permission.MASTER_CLEAR"
2004 android:label="@string/permlab_masterClear"
2005 android:description="@string/permdesc_masterClear"
Dianne Hackborne639da72012-02-21 15:11:13 -08002006 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007
2008 <!-- Allows an application to call any phone number, including emergency
2009 numbers, without going through the Dialer user interface for the user
Scott Main93e60b52013-06-10 11:05:55 -07002010 to confirm the call being placed.
2011 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 <permission android:name="android.permission.CALL_PRIVILEGED"
2013 android:label="@string/permlab_callPrivileged"
2014 android:description="@string/permdesc_callPrivileged"
Dianne Hackborne639da72012-02-21 15:11:13 -08002015 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002016
Jim Miller767be5f2009-08-25 19:33:57 -07002017 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
2018 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
2019 android:label="@string/permlab_performCdmaProvisioning"
2020 android:description="@string/permdesc_performCdmaProvisioning"
Dianne Hackborne639da72012-02-21 15:11:13 -08002021 android:protectionLevel="signature|system" />
Jim Miller767be5f2009-08-25 19:33:57 -07002022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 <!-- Allows enabling/disabling location update notifications from
Scott Main93e60b52013-06-10 11:05:55 -07002024 the radio.
2025 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
2027 android:label="@string/permlab_locationUpdates"
2028 android:description="@string/permdesc_locationUpdates"
Dianne Hackborne639da72012-02-21 15:11:13 -08002029 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002030
2031 <!-- Allows read/write access to the "properties" table in the checkin
Scott Main93e60b52013-06-10 11:05:55 -07002032 database, to change values that get uploaded.
2033 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002034 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
2035 android:label="@string/permlab_checkinProperties"
2036 android:description="@string/permdesc_checkinProperties"
Dianne Hackborne639da72012-02-21 15:11:13 -08002037 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038
2039 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07002040 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002041 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
2042 android:label="@string/permlab_pkgUsageStats"
2043 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborne639da72012-02-21 15:11:13 -08002044 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002045
2046 <!-- Allows an application to collect battery statistics -->
2047 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07002048 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002049 android:label="@string/permlab_batteryStats"
2050 android:description="@string/permdesc_batteryStats"
Dianne Hackborn2ca2c872012-09-16 16:03:36 -07002051 android:protectionLevel="dangerous" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002052
Scott Main93e60b52013-06-10 11:05:55 -07002053 <!-- Allows an application to control the backup and restore process.
2054 <p>Not for use by third-party applications.
Christopher Tate181fafa2009-05-14 11:12:14 -07002055 @hide pending API council -->
2056 <permission android:name="android.permission.BACKUP"
2057 android:label="@string/permlab_backup"
2058 android:description="@string/permdesc_backup"
Dianne Hackborne639da72012-02-21 15:11:13 -08002059 android:protectionLevel="signature|system" />
Christopher Tate181fafa2009-05-14 11:12:14 -07002060
Christopher Tate4a627c72011-04-01 14:43:32 -07002061 <!-- Allows a package to launch the secure full-backup confirmation UI.
2062 ONLY the system process may hold this permission.
2063 @hide -->
2064 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
2065 android:label="@string/permlab_confirm_full_backup"
2066 android:description="@string/permdesc_confirm_full_backup"
2067 android:protectionLevel="signature" />
2068
Winson Chung81f39eb2011-01-11 18:05:01 -08002069 <!-- Must be required by a {@link android.widget.RemoteViewsService},
2070 to ensure that only the system can bind to it. -->
2071 <permission android:name="android.permission.BIND_REMOTEVIEWS"
2072 android:label="@string/permlab_bindRemoteViews"
2073 android:description="@string/permdesc_bindRemoteViews"
Dianne Hackborne639da72012-02-21 15:11:13 -08002074 android:protectionLevel="signature|system" />
Winson Chung81f39eb2011-01-11 18:05:01 -08002075
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002076 <!-- Allows an application to tell the AppWidget service which application
2077 can access AppWidget's data. The normal user flow is that a user
2078 picks an AppWidget to go into a particular host, thereby giving that
2079 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002080 An application that has this permission should honor that contract.
Scott Main93e60b52013-06-10 11:05:55 -07002081 <p>Not for use by third-party applications. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002082 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002083 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2084 android:label="@string/permlab_bindGadget"
2085 android:description="@string/permdesc_bindGadget"
Dianne Hackborne639da72012-02-21 15:11:13 -08002086 android:protectionLevel="signature|system" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002087
Michael Jurkafc753c02012-10-30 18:30:52 -07002088 <!-- Private permission, to restrict who can bring up a dialog to add a new
2089 keyguard widget
2090 @hide -->
2091 <permission android:name="android.permission.BIND_KEYGUARD_APPWIDGET"
2092 android:permissionGroup="android.permission-group.PERSONAL_INFO"
2093 android:protectionLevel="signature|system" />
2094
Michael Jurka61a5b012012-04-13 10:39:45 -07002095 <!-- Internal permission allowing an application to query/set which
2096 applications can bind AppWidgets.
2097 @hide -->
2098 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
2099 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2100 android:protectionLevel="signature|system" />
2101
Scott Main93e60b52013-06-10 11:05:55 -07002102 <!-- Allows applications to change the background data setting.
2103 <p>Not for use by third-party applications.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002104 @hide pending API council -->
2105 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
2106 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2107 android:protectionLevel="signature"
2108 android:description="@string/permdesc_changeBackgroundDataSetting"
2109 android:label="@string/permlab_changeBackgroundDataSetting" />
2110
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002111 <!-- This permission can be used on content providers to allow the global
2112 search system to access their data. Typically it used when the
2113 provider has some permissions protecting it (which global search
2114 would not be expected to hold), and added as a read-only permission
2115 to the path in the provider where global search queries are
2116 performed. This permission can not be held by regular applications;
2117 it is used by applications to protect themselves from everyone else
2118 besides global search. -->
2119 <permission android:name="android.permission.GLOBAL_SEARCH"
2120 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002121 android:protectionLevel="signature|system" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07002122
2123 <!-- Internal permission protecting access to the global search
2124 system: ensures that only the system can access the provider
2125 to perform queries (since this otherwise provides unrestricted
2126 access to a variety of content providers), and to write the
2127 search statistics (to keep applications from gaming the source
2128 ranking).
2129 @hide -->
2130 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
2131 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2132 android:protectionLevel="signature" />
2133
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002134 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07002135 @hide XXX Change to signature once the picker is moved to its
2136 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002137 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
2138 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborne639da72012-02-21 15:11:13 -08002139 android:protectionLevel="signature|system" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002140
John Spurlockf4f6b4c2012-08-25 12:08:03 -04002141 <!-- Allows applications to read dream settings and dream state.
2142 @hide -->
2143 <permission android:name="android.permission.READ_DREAM_STATE"
2144 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2145 android:protectionLevel="signature" />
2146
2147 <!-- Allows applications to write dream settings, and start or stop dreaming.
2148 @hide -->
2149 <permission android:name="android.permission.WRITE_DREAM_STATE"
2150 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
2151 android:protectionLevel="signature" />
2152
Jeff Brownec7c78f2010-03-30 23:37:25 -07002153 <!-- Allow an application to read and write the cache partition.
2154 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002155 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
2156 android:label="@string/permlab_cache_filesystem"
2157 android:description="@string/permdesc_cache_filesystem"
Dianne Hackborne639da72012-02-21 15:11:13 -08002158 android:protectionLevel="signature|system" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08002159
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08002160 <!-- Must be required by default container service so that only
2161 the system can bind to it and use it to copy
2162 protected data to secure containers or files
2163 accessible to the system.
2164 @hide -->
2165 <permission android:name="android.permission.COPY_PROTECTED_DATA"
2166 android:label="@string/permlab_copyProtectedData"
2167 android:description="@string/permlab_copyProtectedData"
2168 android:protectionLevel="signature" />
2169
Jason parks8888c592011-01-20 22:46:41 -06002170 <!-- Internal permission protecting access to the encryption methods
2171 @hide
2172 -->
2173 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborne639da72012-02-21 15:11:13 -08002174 android:protectionLevel="signature|system" />
Jason parks8888c592011-01-20 22:46:41 -06002175
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002176 <!-- Allows an application to read historical network usage for
2177 specific networks and applications. @hide -->
2178 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
2179 android:label="@string/permlab_readNetworkUsageHistory"
2180 android:description="@string/permdesc_readNetworkUsageHistory"
Dianne Hackborne639da72012-02-21 15:11:13 -08002181 android:protectionLevel="signature|system" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002182
2183 <!-- Allows an application to manage network policies (such as warning and disable
2184 limits) and to define application-specific rules. @hide -->
2185 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
2186 android:label="@string/permlab_manageNetworkPolicy"
2187 android:description="@string/permdesc_manageNetworkPolicy"
2188 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06002189
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002190 <!-- Allows an application to account its network traffic against other UIDs. Used
2191 by system services like download manager and media server. Not for use by
2192 third party apps. @hide -->
2193 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
2194 android:label="@string/permlab_modifyNetworkAccounting"
2195 android:description="@string/permdesc_modifyNetworkAccounting"
Dianne Hackborne639da72012-02-21 15:11:13 -08002196 android:protectionLevel="signature|system" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07002197
Tom Taylorb0381682011-08-11 14:27:25 -07002198 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08002199 @hide Used internally.
2200 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002201 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08002202 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002203 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08002204
Dianne Hackborn8832c182012-09-17 17:20:24 -07002205 <!-- @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07002206 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07002207 -->
2208 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
2209 android:label="@string/permlab_packageVerificationAgent"
2210 android:description="@string/permdesc_packageVerificationAgent"
Dianne Hackborne639da72012-02-21 15:11:13 -08002211 android:protectionLevel="signature|system" />
Kenny Root5ab21572011-07-27 11:11:19 -07002212
2213 <!-- Must be required by package verifier receiver, to ensure that only the
2214 system can interact with it.
2215 @hide
2216 -->
2217 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
2218 android:label="@string/permlab_bindPackageVerifier"
2219 android:description="@string/permdesc_bindPackageVerifier"
2220 android:protectionLevel="signature" />
2221
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002222 <!-- Allows applications to access serial ports via the SerialManager.
2223 @hide -->
2224 <permission android:name="android.permission.SERIAL_PORT"
2225 android:label="@string/permlab_serialPort"
2226 android:description="@string/permdesc_serialPort"
Geremy Condrac29f35b2012-10-17 14:06:31 -07002227 android:protectionLevel="signature|system" />
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04002228
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002229 <!-- Allows the holder to access content providers from outside an ApplicationThread.
2230 This permission is enforced by the ActivityManagerService on the corresponding APIs,
2231 in particular ActivityManagerService#getContentProviderExternal(String) and
2232 ActivityManagerService#removeContentProviderExternal(String).
2233 @hide
2234 -->
2235 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
2236 android:label="@string/permlab_accessContentProvidersExternally"
2237 android:description="@string/permdesc_accessContentProvidersExternally"
2238 android:protectionLevel="signature" />
Christopher Tate8662cab52012-02-23 14:59:36 -08002239 <!-- Allows an application to hold an UpdateLock, recommending that a headless
2240 OTA reboot *not* occur while the lock is held.
2241 @hide -->
2242 <permission android:name="android.permission.UPDATE_LOCK"
2243 android:label="@string/permlab_updateLock"
2244 android:description="@string/permdesc_updateLock"
2245 android:protectionLevel="signatureOrSystem" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002246
Daniel Sandlerfde19b12013-01-17 00:21:05 -05002247 <!-- Allows an application to read the current set of notifications, including
2248 any metadata and intents attached.
2249 @hide -->
2250 <permission android:name="android.permission.ACCESS_NOTIFICATIONS"
2251 android:label="@string/permlab_accessNotifications"
2252 android:description="@string/permdesc_accessNotifications"
2253 android:protectionLevel="signature|system" />
2254
Daniel Sandler5feceeb2013-03-22 18:29:23 -07002255 <!-- Must be required by an {@link
2256 android.service.notification.NotificationListenerService},
2257 to ensure that only the system can bind to it. -->
2258 <permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
2259 android:label="@string/permlab_bindNotificationListenerService"
2260 android:description="@string/permdesc_bindNotificationListenerService"
2261 android:protectionLevel="signature" />
2262
Christopher Tate4a627c72011-04-01 14:43:32 -07002263 <!-- The system process is explicitly the only one allowed to launch the
2264 confirmation UI for full backup/restore -->
2265 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
2266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002267 <application android:process="system"
2268 android:persistent="true"
2269 android:hasCode="false"
2270 android:label="@string/android_system_label"
2271 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07002272 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07002273 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07002274 android:icon="@drawable/ic_launcher_android"
2275 android:supportsRtl="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002276 <activity android:name="com.android.internal.app.ChooserActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002277 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07002278 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002279 android:excludeFromRecents="true"
2280 android:multiprocess="true">
2281 <intent-filter>
2282 <action android:name="android.intent.action.CHOOSER" />
2283 <category android:name="android.intent.category.DEFAULT" />
2284 </intent-filter>
2285 </activity>
Dianne Hackborn860755f2010-06-03 18:47:52 -07002286 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002287 android:theme="@style/Theme.Holo.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07002288 android:label="@string/heavy_weight_switcher_title"
2289 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002290 android:excludeFromRecents="true"
2291 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07002292 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002293 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002294 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
2295 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07002296 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08002297 <activity android:name="com.android.internal.app.DisableCarModeActivity"
2298 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002299 android:excludeFromRecents="true"
2300 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08002301 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002302
Fred Quintana33269202009-04-20 16:05:10 -07002303 <activity android:name="android.accounts.ChooseAccountActivity"
2304 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08002305 android:exported="true"
2306 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002307 android:label="@string/choose_account_label"
2308 android:process=":ui">
Fred Quintana33269202009-04-20 16:05:10 -07002309 </activity>
2310
Fred Quintana1121bb52011-09-14 23:19:35 -07002311 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
2312 android:excludeFromRecents="true"
2313 android:exported="true"
Alice Yang727c5992012-05-29 13:31:04 -07002314 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002315 android:label="@string/choose_account_label"
2316 android:process=":ui">
Fred Quintana1121bb52011-09-14 23:19:35 -07002317 </activity>
2318
2319 <activity android:name="android.accounts.ChooseAccountTypeActivity"
2320 android:excludeFromRecents="true"
Jatin Lodhia856b01e2012-09-28 10:53:37 -07002321 android:theme="@android:style/Theme.Holo.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07002322 android:label="@string/choose_account_label"
2323 android:process=":ui">
2324 </activity>
2325
Amith Yamasani23c8b962013-04-10 13:37:18 -07002326 <activity android:name="android.accounts.CantAddAccountActivity"
2327 android:excludeFromRecents="true"
2328 android:exported="true"
2329 android:theme="@android:style/Theme.Holo.Dialog"
2330 android:label="@string/error_message_title"
2331 android:process=":ui">
2332 </activity>
2333
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002334 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
2335 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08002336 android:exported="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002337 android:theme="@android:style/Theme.Holo.DialogWhenLarge"
2338 android:process=":ui">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07002339 </activity>
2340
Fred Quintanab19e62a2010-12-16 13:54:43 -08002341 <activity android:name="android.content.SyncActivityTooManyDeletes"
2342 android:theme="@android:style/Theme.Holo.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002343 android:label="@string/sync_too_many_deletes"
2344 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08002345 </activity>
2346
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002347 <activity android:name="com.android.server.ShutdownActivity"
2348 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07002349 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002350 <intent-filter>
2351 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
2352 <category android:name="android.intent.category.DEFAULT" />
2353 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04002354 <intent-filter>
2355 <action android:name="android.intent.action.REBOOT" />
2356 <category android:name="android.intent.category.DEFAULT" />
2357 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002358 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08002359
Danke Xie22d1f9f2009-08-18 18:28:45 -04002360 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Joe Onoratoa4eb4c32010-11-08 11:05:25 -08002361 android:theme="@style/Theme.Holo.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07002362 android:excludeFromRecents="true"
2363 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04002364 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07002365
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07002366 <receiver android:name="com.android.server.BootReceiver"
2367 android:primaryUserOnly="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002368 <intent-filter>
2369 <action android:name="android.intent.action.BOOT_COMPLETED" />
2370 </intent-filter>
2371 </receiver>
2372
Geremy Condrab6310842012-08-23 22:00:15 -07002373 <receiver android:name="com.android.server.updates.CertPinInstallReceiver" >
2374 <intent-filter>
2375 <action android:name="android.intent.action.UPDATE_PINS" />
2376 </intent-filter>
2377 </receiver>
2378
Ben Gruver633dc9b2013-04-04 12:05:49 -07002379 <receiver android:name="com.android.server.updates.IntentFirewallInstallReceiver" >
2380 <intent-filter>
2381 <action android:name="android.intent.action.UPDATE_INTENT_FIREWALL" />
2382 </intent-filter>
2383 </receiver>
2384
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07002385 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver" >
2386 <intent-filter>
2387 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
2388 </intent-filter>
2389 </receiver>
2390
Robert Greenwalte182bfe2013-07-16 12:06:09 -07002391 <receiver android:name="com.android.server.updates.CarrierProvisioningUrlsInstallReceiver" >
2392 <intent-filter>
2393 <action android:name="android.intent.action.UPDATE_CARRIER_PROVISIONING_URLS" />
2394 </intent-filter>
2395 </receiver>
2396
Geremy Condra78a4c712013-01-30 11:20:26 -08002397 <receiver android:name="com.android.server.updates.TZInfoInstallReceiver" >
2398 <intent-filter>
2399 <action android:name="android.intent.action.UPDATE_TZINFO" />
2400 </intent-filter>
2401 </receiver>
2402
Geremy Condra77118fb2013-03-26 21:09:01 -07002403 <receiver android:name="com.android.server.updates.SELinuxPolicyInstallReceiver" >
2404 <intent-filter>
2405 <action android:name="android.intent.action.UPDATE_SEPOLICY" />
2406 </intent-filter>
2407 </receiver>
2408
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002409 <receiver android:name="com.android.server.MasterClearReceiver"
Dianne Hackborn42499172010-10-15 18:45:07 -07002410 android:permission="android.permission.MASTER_CLEAR"
2411 android:priority="100" >
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412 <intent-filter>
Dan Egnor18e93962010-02-10 19:27:58 -08002413 <!-- For Checkin, Settings, etc.: action=MASTER_CLEAR -->
2414 <action android:name="android.intent.action.MASTER_CLEAR" />
2415
2416 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07002417 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002418 <category android:name="android.intent.category.MASTER_CLEAR" />
2419 </intent-filter>
2420 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07002421
2422 <service android:name="com.android.internal.os.storage.ExternalStorageFormatter"
2423 android:permission="android.permission.MASTER_CLEAR"
2424 android:exported="true" />
2425
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07002426 <service android:name="android.hardware.location.GeofenceHardwareService"
2427 android:permission="android.permission.LOCATION_HARDWARE"
2428 android:exported="false" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002429 </application>
2430
2431</manifest>