blob: 6e42e4678f96a10e5747f78dc4a50f29f79fc377 [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" />
Jeff Sharkey61277df2013-06-12 18:16:01 -070032 <protected-broadcast android:name="android.intent.action.TIME_SET" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070033 <protected-broadcast android:name="android.intent.action.TIME_TICK" />
34 <protected-broadcast android:name="android.intent.action.TIMEZONE_CHANGED" />
Jeff Sharkey61277df2013-06-12 18:16:01 -070035 <protected-broadcast android:name="android.intent.action.DATE_CHANGED" />
Nick Kralevicha3ecf452015-11-25 09:09:27 -080036 <protected-broadcast android:name="android.intent.action.PRE_BOOT_COMPLETED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070037 <protected-broadcast android:name="android.intent.action.BOOT_COMPLETED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070038 <protected-broadcast android:name="android.intent.action.PACKAGE_INSTALL" />
39 <protected-broadcast android:name="android.intent.action.PACKAGE_ADDED" />
40 <protected-broadcast android:name="android.intent.action.PACKAGE_REPLACED" />
Dianne Hackborne7f97212011-02-24 14:40:20 -080041 <protected-broadcast android:name="android.intent.action.MY_PACKAGE_REPLACED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070042 <protected-broadcast android:name="android.intent.action.PACKAGE_REMOVED" />
Dianne Hackbornf9abb402011-08-10 15:00:59 -070043 <protected-broadcast android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070044 <protected-broadcast android:name="android.intent.action.PACKAGE_CHANGED" />
45 <protected-broadcast android:name="android.intent.action.PACKAGE_RESTARTED" />
46 <protected-broadcast android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
Dianne Hackborne7f97212011-02-24 14:40:20 -080047 <protected-broadcast android:name="android.intent.action.PACKAGE_FIRST_LAUNCH" />
Kenny Root5ab21572011-07-27 11:11:19 -070048 <protected-broadcast android:name="android.intent.action.PACKAGE_NEEDS_VERIFICATION" />
rich canningsd1b5cfc2012-08-29 14:49:51 -070049 <protected-broadcast android:name="android.intent.action.PACKAGE_VERIFIED" />
Andrei Stingaceanu69d5ebc2016-01-14 12:59:03 +000050 <protected-broadcast android:name="android.intent.action.PACKAGES_SUSPENDED" />
51 <protected-broadcast android:name="android.intent.action.PACKAGES_UNSUSPENDED" />
Makoto Onuki10305202016-07-14 18:14:08 -070052 <protected-broadcast android:name="android.intent.action.ACTION_PREFERRED_ACTIVITY_CHANGED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070053 <protected-broadcast android:name="android.intent.action.UID_REMOVED" />
Dianne Hackborn52c62342012-09-21 10:57:45 -070054 <protected-broadcast android:name="android.intent.action.QUERY_PACKAGE_RESTART" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070055 <protected-broadcast android:name="android.intent.action.CONFIGURATION_CHANGED" />
Adam Lesinski57fccd62018-01-25 13:03:57 -080056 <protected-broadcast android:name="android.intent.action.SPLIT_CONFIGURATION_CHANGED" />
Dianne Hackborn362d5b92009-11-11 18:04:39 -080057 <protected-broadcast android:name="android.intent.action.LOCALE_CHANGED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070058 <protected-broadcast android:name="android.intent.action.BATTERY_CHANGED" />
Fyodor Kupolov70e75432018-03-01 18:29:06 -080059 <protected-broadcast android:name="android.intent.action.BATTERY_LEVEL_CHANGED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070060 <protected-broadcast android:name="android.intent.action.BATTERY_LOW" />
61 <protected-broadcast android:name="android.intent.action.BATTERY_OKAY" />
62 <protected-broadcast android:name="android.intent.action.ACTION_POWER_CONNECTED" />
63 <protected-broadcast android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
64 <protected-broadcast android:name="android.intent.action.ACTION_SHUTDOWN" />
Dianne Hackborn4870e9d2015-04-08 16:55:47 -070065 <protected-broadcast android:name="android.intent.action.CHARGING" />
66 <protected-broadcast android:name="android.intent.action.DISCHARGING" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070067 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_LOW" />
68 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_OK" />
Jake Hambybb371632010-08-23 18:16:48 -070069 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_FULL" />
70 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_NOT_FULL" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070071 <protected-broadcast android:name="android.intent.action.NEW_OUTGOING_CALL" />
72 <protected-broadcast android:name="android.intent.action.REBOOT" />
Dianne Hackborn7299c412010-03-04 18:41:49 -080073 <protected-broadcast android:name="android.intent.action.DOCK_EVENT" />
Bryce Leebc58f592015-09-25 16:43:01 -070074 <protected-broadcast android:name="android.intent.action.THERMAL_EVENT" />
Jason parks4ca74dc2011-03-14 15:23:31 -050075 <protected-broadcast android:name="android.intent.action.MASTER_CLEAR_NOTIFICATION" />
Amith Yamasani13593602012-03-22 16:16:17 -070076 <protected-broadcast android:name="android.intent.action.USER_ADDED" />
77 <protected-broadcast android:name="android.intent.action.USER_REMOVED" />
Jeff Sharkey61277df2013-06-12 18:16:01 -070078 <protected-broadcast android:name="android.intent.action.USER_STARTING" />
79 <protected-broadcast android:name="android.intent.action.USER_STARTED" />
80 <protected-broadcast android:name="android.intent.action.USER_STOPPING" />
Dianne Hackborn80a4af22012-08-27 19:18:31 -070081 <protected-broadcast android:name="android.intent.action.USER_STOPPED" />
Dianne Hackborn5dc5a002012-09-15 19:33:48 -070082 <protected-broadcast android:name="android.intent.action.USER_BACKGROUND" />
83 <protected-broadcast android:name="android.intent.action.USER_FOREGROUND" />
Amith Yamasani13593602012-03-22 16:16:17 -070084 <protected-broadcast android:name="android.intent.action.USER_SWITCHED" />
Nick Kralevicha3ecf452015-11-25 09:09:27 -080085 <protected-broadcast android:name="android.intent.action.USER_INITIALIZE" />
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -080086 <protected-broadcast android:name="android.intent.action.INTENT_FILTER_NEEDS_VERIFICATION" />
Mårten Kongstadeabc9e92015-12-15 16:40:23 +010087 <protected-broadcast android:name="android.intent.action.OVERLAY_ADDED" />
88 <protected-broadcast android:name="android.intent.action.OVERLAY_CHANGED" />
89 <protected-broadcast android:name="android.intent.action.OVERLAY_REMOVED" />
90 <protected-broadcast android:name="android.intent.action.OVERLAY_PRIORITY_CHANGED" />
Yoshiaki Nakae1bdfc822017-09-15 15:24:34 +090091 <protected-broadcast android:name="android.intent.action.USER_ACTIVITY_NOTIFICATION" />
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -070092 <protected-broadcast android:name="android.intent.action.MY_PACKAGE_SUSPENDED" />
93 <protected-broadcast android:name="android.intent.action.MY_PACKAGE_UNSUSPENDED" />
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070094
Dianne Hackborneb94fa72014-06-03 17:48:12 -070095 <protected-broadcast android:name="android.os.action.POWER_SAVE_MODE_CHANGED" />
John Spurlock1bb480a2014-08-02 17:12:43 -040096 <protected-broadcast android:name="android.os.action.POWER_SAVE_MODE_CHANGING" />
Dianne Hackborn0b4daca2015-04-27 09:47:32 -070097 <protected-broadcast android:name="android.os.action.DEVICE_IDLE_MODE_CHANGED" />
98 <protected-broadcast android:name="android.os.action.POWER_SAVE_WHITELIST_CHANGED" />
Amith Yamasaniaf575b92015-05-29 15:35:26 -070099 <protected-broadcast android:name="android.os.action.POWER_SAVE_TEMP_WHITELIST_CHANGED" />
Jeff Sharkey925cc2a2016-03-02 16:21:58 -0700100 <protected-broadcast android:name="android.os.action.POWER_SAVE_MODE_CHANGED_INTERNAL" />
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700101
Julius D'souzab22da802017-06-09 10:27:14 -0700102 <!-- @deprecated This is rarely used and will be phased out soon. -->
Bryce Lee84d6c0f2015-03-17 10:43:08 -0700103 <protected-broadcast android:name="android.os.action.SCREEN_BRIGHTNESS_BOOST_CHANGED" />
104
Dianne Hackborn7299c412010-03-04 18:41:49 -0800105 <protected-broadcast android:name="android.app.action.ENTER_CAR_MODE" />
106 <protected-broadcast android:name="android.app.action.EXIT_CAR_MODE" />
107 <protected-broadcast android:name="android.app.action.ENTER_DESK_MODE" />
108 <protected-broadcast android:name="android.app.action.EXIT_DESK_MODE" />
Adrian Roosc42a1e12014-07-07 23:35:53 +0200109 <protected-broadcast android:name="android.app.action.NEXT_ALARM_CLOCK_CHANGED" />
Debashish Chatterjeee53eba02011-08-04 14:12:58 +0100110
Michal Karpinski3fc437e2015-12-15 10:09:00 +0000111 <protected-broadcast android:name="android.app.action.BUGREPORT_SHARING_DECLINED" />
112 <protected-broadcast android:name="android.app.action.BUGREPORT_FAILED" />
113 <protected-broadcast android:name="android.app.action.BUGREPORT_SHARE" />
phweissa0cb2512016-12-14 21:37:48 +0100114 <protected-broadcast android:name="android.app.action.SHOW_DEVICE_MONITORING_DIALOG" />
Michal Karpinski3fc437e2015-12-15 10:09:00 +0000115
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700116 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_UPDATE_OPTIONS" />
117 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_DELETED" />
118 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_DISABLED" />
119 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_ENABLED" />
Christopher Tateadfe8b82014-02-04 16:23:32 -0800120 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED" />
121 <protected-broadcast android:name="android.appwidget.action.APPWIDGET_RESTORED" />
Dianne Hackborna40cfeb2013-03-25 17:49:36 -0700122
Christopher Tate6597e342015-02-17 12:15:25 -0800123 <protected-broadcast android:name="android.os.action.SETTING_RESTORED" />
124
Christopher Tateca8bce52016-01-08 15:36:00 -0800125 <protected-broadcast android:name="android.app.backup.intent.RUN" />
126 <protected-broadcast android:name="android.app.backup.intent.CLEAR" />
127 <protected-broadcast android:name="android.app.backup.intent.INIT" />
Christopher Tate4cc86e12009-09-21 19:36:51 -0700128
Andre Eisenbach09bc4e02015-12-29 14:58:53 -0800129 <protected-broadcast android:name="android.bluetooth.intent.DISCOVERABLE_TIMEOUT" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700130 <protected-broadcast android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
131 <protected-broadcast android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
132 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
133 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
134 <protected-broadcast android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
Stanley Tngad4d1d82017-04-17 22:35:45 -0700135 <protected-broadcast android:name="android.bluetooth.adapter.action.BLUETOOTH_ADDRESS_CHANGED" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700136 <protected-broadcast android:name="android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED" />
Jeff Sharkey61277df2013-06-12 18:16:01 -0700137 <protected-broadcast android:name="android.bluetooth.device.action.UUID" />
Hemant Gupta8949bfb2013-08-16 14:57:55 +0530138 <protected-broadcast android:name="android.bluetooth.device.action.MAS_INSTANCE" />
Jeff Sharkey61277df2013-06-12 18:16:01 -0700139 <protected-broadcast android:name="android.bluetooth.device.action.ALIAS_CHANGED" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700140 <protected-broadcast android:name="android.bluetooth.device.action.FOUND" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700141 <protected-broadcast android:name="android.bluetooth.device.action.CLASS_CHANGED" />
142 <protected-broadcast android:name="android.bluetooth.device.action.ACL_CONNECTED" />
143 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
144 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
145 <protected-broadcast android:name="android.bluetooth.device.action.NAME_CHANGED" />
146 <protected-broadcast android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
147 <protected-broadcast android:name="android.bluetooth.device.action.NAME_FAILED" />
148 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
149 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700150 <protected-broadcast android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REPLY" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700151 <protected-broadcast android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" />
152 <protected-broadcast android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" />
Ajay Panicker4f86d762016-04-19 10:16:54 -0700153 <protected-broadcast android:name="android.bluetooth.device.action.SDP_RECORD" />
Jack He1d312bf2017-06-16 19:43:58 -0700154 <protected-broadcast android:name="android.bluetooth.device.action.BATTERY_LEVEL_CHANGED" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700155 <protected-broadcast android:name="android.bluetooth.devicepicker.action.LAUNCH" />
156 <protected-broadcast android:name="android.bluetooth.devicepicker.action.DEVICE_SELECTED" />
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700157 <protected-broadcast
158 android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
159 <protected-broadcast
160 android:name="android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED" />
161 <protected-broadcast
162 android:name="android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT" />
163 <protected-broadcast
Jack He0bba1c62016-10-10 12:37:40 -0700164 android:name="android.bluetooth.headset.action.HF_INDICATORS_VALUE_CHANGED" />
165 <protected-broadcast
Jack He985cdcb2018-01-03 12:13:26 -0800166 android:name="android.bluetooth.headset.profile.action.ACTIVE_DEVICE_CHANGED" />
167 <protected-broadcast
Mike Lockwoodcf916d32014-06-12 11:23:40 -0700168 android:name="android.bluetooth.headsetclient.profile.action.CONNECTION_STATE_CHANGED" />
169 <protected-broadcast
170 android:name="android.bluetooth.headsetclient.profile.action.AUDIO_STATE_CHANGED" />
171 <protected-broadcast
172 android:name="android.bluetooth.headsetclient.profile.action.AG_EVENT" />
173 <protected-broadcast
174 android:name="android.bluetooth.headsetclient.profile.action.AG_CALL_CHANGED" />
175 <protected-broadcast
176 android:name="android.bluetooth.headsetclient.profile.action.RESULT" />
177 <protected-broadcast
178 android:name="android.bluetooth.headsetclient.profile.action.LAST_VTAG" />
179 <protected-broadcast
Jakub Pawlowskiea580fa2017-11-22 11:02:34 -0800180 android:name="android.bluetooth.hearingaid.profile.action.CONNECTION_STATE_CHANGED" />
181 <protected-broadcast
182 android:name="android.bluetooth.hearingaid.profile.action.PLAYING_STATE_CHANGED" />
183 <protected-broadcast
Hansong Zhangd7b35912018-03-16 09:15:48 -0700184 android:name="android.bluetooth.hearingaid.profile.action.ACTIVE_DEVICE_CHANGED" />
185 <protected-broadcast
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700186 android:name="android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED" />
187 <protected-broadcast
Pavlin Radoslavov64a94352017-12-19 13:20:06 -0800188 android:name="android.bluetooth.a2dp.profile.action.ACTIVE_DEVICE_CHANGED" />
189 <protected-broadcast
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700190 android:name="android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED" />
191 <protected-broadcast
Pavlin Radoslavov44a4ef02016-12-21 12:05:51 -0800192 android:name="android.bluetooth.a2dp.profile.action.CODEC_CONFIG_CHANGED" />
193 <protected-broadcast
Mike Lockwood2263dd12014-05-14 09:51:30 -0700194 android:name="android.bluetooth.a2dp-sink.profile.action.CONNECTION_STATE_CHANGED" />
195 <protected-broadcast
196 android:name="android.bluetooth.a2dp-sink.profile.action.PLAYING_STATE_CHANGED" />
197 <protected-broadcast
198 android:name="android.bluetooth.a2dp-sink.profile.action.AUDIO_CONFIG_CHANGED" />
Amit Mahajane5cd9fa2016-02-11 16:08:14 -0800199 <protected-broadcast
Pulkit Bhuwalkadab081c2017-09-25 19:19:46 -0700200 android:name="android.bluetooth.avrcp-controller.profile.action.BROWSE_CONNECTION_STATE_CHANGED" />
201 <protected-broadcast
Mike Lockwood94b59de2014-06-02 16:20:37 -0700202 android:name="android.bluetooth.avrcp-controller.profile.action.CONNECTION_STATE_CHANGED" />
Mike Lockwood2263dd12014-05-14 09:51:30 -0700203 <protected-broadcast
Pulkit Bhuwalkadab081c2017-09-25 19:19:46 -0700204 android:name="android.bluetooth.avrcp-controller.profile.action.FOLDER_LIST" />
205 <protected-broadcast
206 android:name="android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT" />
207 <protected-broadcast
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700208 android:name="android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED" />
209 <protected-broadcast
Pulkit Bhuwalkadab081c2017-09-25 19:19:46 -0700210 android:name="android.bluetooth.input.profile.action.IDLE_TIME_CHANGED" />
211 <protected-broadcast
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700212 android:name="android.bluetooth.input.profile.action.PROTOCOL_MODE_CHANGED" />
213 <protected-broadcast
214 android:name="android.bluetooth.input.profile.action.VIRTUAL_UNPLUG_STATUS" />
215 <protected-broadcast
Hansong Zhangc26c76c2017-10-20 15:55:59 -0700216 android:name="android.bluetooth.hiddevice.profile.action.CONNECTION_STATE_CHANGED" />
Ivan Podogov0afe1902016-12-23 11:52:21 +0000217 <protected-broadcast
Ajay Panicker2f78bf92016-05-03 11:14:07 -0700218 android:name="android.bluetooth.map.profile.action.CONNECTION_STATE_CHANGED" />
Jack He1ac34e32016-11-30 16:28:53 -0800219 <protected-broadcast android:name="android.bluetooth.mapmce.profile.action.CONNECTION_STATE_CHANGED" />
220 <protected-broadcast android:name="android.bluetooth.mapmce.profile.action.MESSAGE_RECEIVED" />
221 <protected-broadcast android:name="android.bluetooth.mapmce.profile.action.MESSAGE_SENT_SUCCESSFULLY" />
222 <protected-broadcast android:name="android.bluetooth.mapmce.profile.action.MESSAGE_DELIVERED_SUCCESSFULLY" />
Ajay Panicker2f78bf92016-05-03 11:14:07 -0700223 <protected-broadcast
Ajay Panicker1f5b7862016-08-17 15:36:24 -0700224 android:name="com.android.bluetooth.BluetoothMapContentObserver.action.MESSAGE_SENT" />
225 <protected-broadcast
226 android:name="com.android.bluetooth.BluetoothMapContentObserver.action.MESSAGE_DELIVERY" />
227 <protected-broadcast
Jaikumar Ganesh81e23ac2011-09-06 13:03:50 -0700228 android:name="android.bluetooth.pan.profile.action.CONNECTION_STATE_CHANGED" />
Jack He1ac34e32016-11-30 16:28:53 -0800229 <protected-broadcast android:name="android.bluetooth.pbap.profile.action.CONNECTION_STATE_CHANGED" />
Jack He37ab8152017-10-02 19:08:30 -0700230 <protected-broadcast android:name="android.bluetooth.pbapclient.profile.action.CONNECTION_STATE_CHANGED" />
Ajay Panicker9a236062016-08-17 15:36:24 -0700231 <protected-broadcast android:name="android.bluetooth.sap.profile.action.CONNECTION_STATE_CHANGED" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700232 <protected-broadcast android:name="android.btopp.intent.action.INCOMING_FILE_NOTIFICATION" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700233 <protected-broadcast android:name="android.btopp.intent.action.USER_CONFIRMATION_TIMEOUT" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700234 <protected-broadcast android:name="android.btopp.intent.action.LIST" />
235 <protected-broadcast android:name="android.btopp.intent.action.OPEN_OUTBOUND" />
236 <protected-broadcast android:name="android.btopp.intent.action.HIDE_COMPLETE" />
237 <protected-broadcast android:name="android.btopp.intent.action.CONFIRM" />
238 <protected-broadcast android:name="android.btopp.intent.action.HIDE" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700239 <protected-broadcast android:name="android.btopp.intent.action.RETRY" />
240 <protected-broadcast android:name="android.btopp.intent.action.OPEN" />
241 <protected-broadcast android:name="android.btopp.intent.action.OPEN_INBOUND" />
Ajay Panicker2759e422016-05-05 18:59:44 -0700242 <protected-broadcast android:name="android.btopp.intent.action.TRANSFER_COMPLETE" />
Jack Hec82a4f42016-09-20 16:06:32 -0700243 <protected-broadcast android:name="android.btopp.intent.action.ACCEPT" />
Marie Janssen71c52e62017-03-08 10:12:07 -0800244 <protected-broadcast android:name="android.btopp.intent.action.DECLINE" />
Ajay Panicker58dd0cd2016-06-28 16:12:37 -0700245 <protected-broadcast android:name="com.android.bluetooth.gatt.REFRESH_BATCHED_SCAN" />
Matthew Xie6b8a6a62013-08-20 18:07:25 -0700246 <protected-broadcast android:name="com.android.bluetooth.pbap.authchall" />
247 <protected-broadcast android:name="com.android.bluetooth.pbap.userconfirmtimeout" />
248 <protected-broadcast android:name="com.android.bluetooth.pbap.authresponse" />
249 <protected-broadcast android:name="com.android.bluetooth.pbap.authcancelled" />
Ajay Panicker9a236062016-08-17 15:36:24 -0700250 <protected-broadcast android:name="com.android.bluetooth.sap.USER_CONFIRM_TIMEOUT" />
251 <protected-broadcast android:name="com.android.bluetooth.sap.action.DISCONNECT_ACTION" />
Nick Pelly72440a0e2009-09-15 17:21:10 -0700252
Jeff Browne08ae382012-09-07 20:36:36 -0700253 <protected-broadcast android:name="android.hardware.display.action.WIFI_DISPLAY_STATUS_CHANGED" />
254
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800255 <protected-broadcast android:name="android.hardware.usb.action.USB_STATE" />
Jeff Brown76c4c662015-07-07 12:44:17 -0700256 <protected-broadcast android:name="android.hardware.usb.action.USB_PORT_CHANGED" />
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800257 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
Michael Wrighta62e8a82015-09-21 15:41:24 +0100258 <protected-broadcast android:name="android.hardware.usb.action.USB_ACCESSORY_DETACHED" />
Mike Lockwoodc4308f02011-03-01 08:04:54 -0800259 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
260 <protected-broadcast android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
Mike Lockwood57c798a2010-06-23 17:36:36 -0400261
Mike Lockwood8f014052012-04-26 11:23:48 -0700262 <protected-broadcast android:name="android.intent.action.HEADSET_PLUG" />
Jean-Michel Trivi26d6ff02014-09-03 14:20:41 -0700263 <protected-broadcast android:name="android.media.action.HDMI_AUDIO_PLUG" />
Nobuaki Tanakac4218a02018-05-22 19:22:21 +0900264 <protected-broadcast android:name="android.media.action.MICROPHONE_MUTE_CHANGED" />
Mike Lockwood8f014052012-04-26 11:23:48 -0700265
Jeff Sharkey61277df2013-06-12 18:16:01 -0700266 <protected-broadcast android:name="android.media.AUDIO_BECOMING_NOISY" />
267 <protected-broadcast android:name="android.media.RINGER_MODE_CHANGED" />
268 <protected-broadcast android:name="android.media.VIBRATE_SETTING_CHANGED" />
269 <protected-broadcast android:name="android.media.VOLUME_CHANGED_ACTION" />
270 <protected-broadcast android:name="android.media.MASTER_VOLUME_CHANGED_ACTION" />
271 <protected-broadcast android:name="android.media.MASTER_MUTE_CHANGED_ACTION" />
Andy Hungf04b84d2015-12-18 17:33:27 -0800272 <protected-broadcast android:name="android.media.MASTER_MONO_CHANGED_ACTION" />
Jeff Sharkey61277df2013-06-12 18:16:01 -0700273 <protected-broadcast android:name="android.media.SCO_AUDIO_STATE_CHANGED" />
274 <protected-broadcast android:name="android.media.ACTION_SCO_AUDIO_STATE_UPDATED" />
275
276 <protected-broadcast android:name="android.intent.action.MEDIA_REMOVED" />
277 <protected-broadcast android:name="android.intent.action.MEDIA_UNMOUNTED" />
278 <protected-broadcast android:name="android.intent.action.MEDIA_CHECKING" />
279 <protected-broadcast android:name="android.intent.action.MEDIA_NOFS" />
280 <protected-broadcast android:name="android.intent.action.MEDIA_MOUNTED" />
281 <protected-broadcast android:name="android.intent.action.MEDIA_SHARED" />
282 <protected-broadcast android:name="android.intent.action.MEDIA_UNSHARED" />
283 <protected-broadcast android:name="android.intent.action.MEDIA_BAD_REMOVAL" />
284 <protected-broadcast android:name="android.intent.action.MEDIA_UNMOUNTABLE" />
285 <protected-broadcast android:name="android.intent.action.MEDIA_EJECT" />
286
Paul Jensen25a217c2015-02-27 22:55:47 -0500287 <protected-broadcast android:name="android.net.conn.CAPTIVE_PORTAL" />
Jeff Sharkey961e3042011-08-29 16:02:57 -0700288 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE" />
Erik Kline17e11fa2015-04-21 15:20:58 +0900289 <!-- @deprecated. Only {@link android.net.ConnectivityManager.CONNECTIVITY_ACTION} is sent. -->
Jeff Sharkey961e3042011-08-29 16:02:57 -0700290 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE_IMMEDIATE" />
Haoyu Baidb3c8672012-06-20 14:29:57 -0700291 <protected-broadcast android:name="android.net.conn.DATA_ACTIVITY_CHANGE" />
Felipe Leme9778f762016-01-27 14:46:39 -0800292 <protected-broadcast android:name="android.net.conn.RESTRICT_BACKGROUND_CHANGED" />
Robert Greenwalt68b13ba2013-04-18 10:29:29 -0700293 <protected-broadcast android:name="android.net.conn.BACKGROUND_DATA_SETTING_CHANGED" />
Russell Brenner108da0c2013-02-12 10:03:14 -0800294 <protected-broadcast android:name="android.net.conn.CAPTIVE_PORTAL_TEST_COMPLETED" />
Jeff Sharkey961e3042011-08-29 16:02:57 -0700295
Jeff Sharkey61277df2013-06-12 18:16:01 -0700296 <protected-broadcast android:name="android.net.nsd.STATE_CHANGED" />
297
Martijn Coenen5e906f82016-02-18 12:19:01 +0100298 <protected-broadcast android:name="android.nfc.action.ADAPTER_STATE_CHANGED" />
299 <protected-broadcast android:name="android.nfc.action.TRANSACTION_DETECTED" />
300 <protected-broadcast android:name="com.android.nfc.action.LLCP_UP" />
301 <protected-broadcast android:name="com.android.nfc.action.LLCP_DOWN" />
302 <protected-broadcast android:name="com.android.nfc.cardemulation.action.CLOSE_TAP_DIALOG" />
303 <protected-broadcast android:name="com.android.nfc.handover.action.ALLOW_CONNECT" />
304 <protected-broadcast android:name="com.android.nfc.handover.action.DENY_CONNECT" />
Hiroki Yamamoto506350b2017-04-14 15:10:15 +0900305 <protected-broadcast android:name="com.android.nfc.handover.action.TIMEOUT_CONNECT" />
Nick Pelly367f41f2011-03-08 11:43:30 -0800306 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_ON_DETECTED" />
307 <protected-broadcast android:name="com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED" />
308 <protected-broadcast android:name="com.android.nfc_extras.action.AID_SELECTED" />
Martijn Coenen5e906f82016-02-18 12:19:01 +0100309 <!-- For NFC to BT handover -->
310 <protected-broadcast android:name="android.btopp.intent.action.WHITELIST_DEVICE" />
311 <protected-broadcast android:name="android.btopp.intent.action.STOP_HANDOVER_TRANSFER" />
312 <protected-broadcast android:name="android.nfc.handover.intent.action.HANDOVER_SEND" />
313 <protected-broadcast android:name="android.nfc.handover.intent.action.HANDOVER_SEND_MULTIPLE" />
Hiroki Yamamoto57a51452017-03-28 11:45:13 +0900314 <protected-broadcast android:name="com.android.nfc.handover.action.CANCEL_HANDOVER_TRANSFER" />
Martijn Coenen8abf6802015-04-20 13:44:58 +0200315
Robert Greenwalt03595d02010-11-02 14:08:23 -0700316 <protected-broadcast android:name="android.intent.action.CLEAR_DNS_CACHE" />
Robert Greenwalt434203a2010-10-11 16:00:27 -0700317 <protected-broadcast android:name="android.intent.action.PROXY_CHANGE" />
Nick Pelly038cabe2010-09-23 16:12:11 -0700318
Christopher Tate8662cab52012-02-23 14:59:36 -0800319 <protected-broadcast android:name="android.os.UpdateLock.UPDATE_LOCK_CHANGED" />
Nick Pellya64e2ad42011-03-14 10:28:11 -0700320
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400321 <protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
322 <protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800323 <protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
324
David Chenadaf8b32017-11-03 15:42:08 -0700325 <protected-broadcast android:name="com.android.server.stats.action.TRIGGER_COLLECTION" />
326
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800327 <protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
Pierre Vandwalleb6ca9372015-06-18 14:48:39 -0700328 <protected-broadcast android:name="com.android.server.WifiManager.action.START_PNO" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800329 <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
Jeff Sharkey925cc2a2016-03-02 16:21:58 -0700330 <protected-broadcast android:name="com.android.server.WifiManager.action.DEVICE_IDLE" />
Michal Karpinski3fc437e2015-12-15 10:09:00 +0000331 <protected-broadcast android:name="com.android.server.action.REMOTE_BUGREPORT_SHARING_ACCEPTED" />
332 <protected-broadcast android:name="com.android.server.action.REMOTE_BUGREPORT_SHARING_DECLINED" />
yinxu7b5a0f42017-08-07 14:53:15 -0700333 <protected-broadcast android:name="com.android.internal.action.EUICC_FACTORY_RESET" />
Dianne Hackborna8e6f872016-05-24 13:22:18 -0700334 <protected-broadcast android:name="com.android.server.usb.ACTION_OPEN_IN_APPS" />
335 <protected-broadcast android:name="com.android.server.am.DELETE_DUMPHEAP" />
336 <protected-broadcast android:name="com.android.server.net.action.SNOOZE_WARNING" />
Jeff Sharkeybfb43ea2018-02-03 12:08:16 -0700337 <protected-broadcast android:name="com.android.server.net.action.SNOOZE_RAPID" />
Stephen Chencd9bdb62017-09-05 12:51:15 -0700338 <protected-broadcast android:name="com.android.server.wifi.ConnectToNetworkNotification.USER_DISMISSED_NOTIFICATION" />
339 <protected-broadcast android:name="com.android.server.wifi.ConnectToNetworkNotification.CONNECT_TO_NETWORK" />
340 <protected-broadcast android:name="com.android.server.wifi.ConnectToNetworkNotification.PICK_WIFI_NETWORK" />
341 <protected-broadcast android:name="com.android.server.wifi.ConnectToNetworkNotification.PICK_NETWORK_AFTER_FAILURE" />
Eric Schwarzenbach3caeb4e2018-01-10 17:31:28 -0800342 <protected-broadcast android:name="com.android.server.wifi.wakeup.DISMISS_NOTIFICATION" />
343 <protected-broadcast android:name="com.android.server.wifi.wakeup.OPEN_WIFI_PREFERENCES" />
344 <protected-broadcast android:name="com.android.server.wifi.wakeup.OPEN_WIFI_SETTINGS" />
345 <protected-broadcast android:name="com.android.server.wifi.wakeup.TURN_OFF_WIFI_WAKE" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800346 <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" />
347 <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" />
Wenchao Tongcdd58582014-06-18 12:59:21 -0700348 <protected-broadcast android:name="android.net.wifi.WIFI_CREDENTIAL_CHANGED" />
Robert Greenwalt89710842013-06-25 11:41:53 -0700349 <protected-broadcast android:name="android.net.wifi.WIFI_SCAN_AVAILABLE" />
Etan Cohen04133272016-10-26 11:22:06 -0700350 <protected-broadcast android:name="android.net.wifi.aware.action.WIFI_AWARE_STATE_CHANGED" />
Etan Cohen58019f52017-10-25 07:23:35 -0700351 <protected-broadcast android:name="android.net.wifi.rtt.action.WIFI_RTT_STATE_CHANGED" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800352 <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" />
353 <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" />
354 <protected-broadcast android:name="android.net.wifi.STATE_CHANGE" />
355 <protected-broadcast android:name="android.net.wifi.LINK_CONFIGURATION_CHANGED" />
356 <protected-broadcast android:name="android.net.wifi.CONFIGURED_NETWORKS_CHANGE" />
Peter Qiucb9ad342017-03-27 11:49:33 -0700357 <protected-broadcast android:name="android.net.wifi.action.PASSPOINT_DEAUTH_IMMINENT" />
358 <protected-broadcast android:name="android.net.wifi.action.PASSPOINT_ICON" />
359 <protected-broadcast android:name="android.net.wifi.action.PASSPOINT_OSU_PROVIDERS_LIST" />
360 <protected-broadcast android:name="android.net.wifi.action.PASSPOINT_SUBSCRIPTION_REMEDIATION" />
Ecco Park1460c302018-07-31 13:07:15 -0700361 <protected-broadcast android:name="android.net.wifi.action.PASSPOINT_LAUNCH_OSU_VIEW" />
Robert Greenwalt47918ae2012-11-28 16:42:32 -0800362 <protected-broadcast android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
363 <protected-broadcast android:name="android.net.wifi.supplicant.STATE_CHANGE" />
364 <protected-broadcast android:name="android.net.wifi.p2p.STATE_CHANGED" />
365 <protected-broadcast android:name="android.net.wifi.p2p.DISCOVERY_STATE_CHANGE" />
366 <protected-broadcast android:name="android.net.wifi.p2p.THIS_DEVICE_CHANGED" />
367 <protected-broadcast android:name="android.net.wifi.p2p.PEERS_CHANGED" />
368 <protected-broadcast android:name="android.net.wifi.p2p.CONNECTION_STATE_CHANGE" />
369 <protected-broadcast android:name="android.net.wifi.p2p.PERSISTENT_GROUPS_CHANGED" />
370 <protected-broadcast android:name="android.net.conn.TETHER_STATE_CHANGED" />
371 <protected-broadcast android:name="android.net.conn.INET_CONDITION_ACTION" />
Brian Williammee1ed51622013-07-31 17:07:33 -0700372 <protected-broadcast android:name="android.net.conn.NETWORK_CONDITIONS_MEASURED" />
Jeff Sharkeyed74f8e2013-10-11 14:25:48 -0700373 <protected-broadcast
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700374 android:name="android.net.ConnectivityService.action.PKT_CNT_SAMPLE_INTERVAL_ELAPSED" />
Jeff Davidsonb51e0a62014-04-09 12:38:15 -0700375 <protected-broadcast android:name="android.net.scoring.SCORE_NETWORKS" />
Jeff Davidsonb096bdc2014-07-01 12:29:11 -0700376 <protected-broadcast android:name="android.net.scoring.SCORER_CHANGED" />
Nick Kralevicha4405ba2012-12-06 15:22:11 -0800377 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
378 <protected-broadcast android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" />
379 <protected-broadcast android:name="android.intent.action.AIRPLANE_MODE" />
380 <protected-broadcast android:name="android.intent.action.ADVANCED_SETTINGS" />
Robin Lee66e5d962014-04-09 16:44:21 +0100381 <protected-broadcast android:name="android.intent.action.APPLICATION_RESTRICTIONS_CHANGED" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -0400382
Christopher Tate4cf5a492016-02-03 16:42:19 -0800383 <!-- Legacy -->
Svetoslavb3038ec2013-02-13 14:39:30 -0800384 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_START" />
385 <protected-broadcast android:name="android.intent.action.ACTION_IDLE_MAINTENANCE_END" />
386
Christopher Tate27d92e42016-05-06 11:25:11 -0700387 <protected-broadcast android:name="com.android.server.ACTION_TRIGGER_IDLE" />
Christopher Tate4cf5a492016-02-03 16:42:19 -0800388
Jeff Sharkey61277df2013-06-12 18:16:01 -0700389 <protected-broadcast android:name="android.intent.action.HDMI_PLUGGED" />
390
391 <protected-broadcast android:name="android.intent.action.PHONE_STATE" />
392
Wink Saville05e6dde2014-08-31 19:24:10 -0700393 <protected-broadcast android:name="android.intent.action.SUB_DEFAULT_CHANGED" />
394
Jeff Sharkey61277df2013-06-12 18:16:01 -0700395 <protected-broadcast android:name="android.location.GPS_ENABLED_CHANGE" />
396 <protected-broadcast android:name="android.location.PROVIDERS_CHANGED" />
Tom O'Neill40a86c22013-09-03 18:05:13 -0700397 <protected-broadcast android:name="android.location.MODE_CHANGED" />
Jeff Sharkey61277df2013-06-12 18:16:01 -0700398 <protected-broadcast android:name="android.location.GPS_FIX_CHANGE" />
Jason Monk9ced3cd2013-08-12 16:42:38 -0400399 <protected-broadcast android:name="android.net.proxy.PAC_REFRESH" />
Jeff Sharkey61277df2013-06-12 18:16:01 -0700400
Yorke Lee107c4ce2015-06-15 12:08:24 -0700401 <protected-broadcast android:name="android.telecom.action.DEFAULT_DIALER_CHANGED" />
Dianne Hackborna8e6f872016-05-24 13:22:18 -0700402 <protected-broadcast android:name="android.provider.action.DEFAULT_SMS_PACKAGE_CHANGED" />
Amit Mahajan8c1c45a2018-10-22 10:43:34 -0700403 <protected-broadcast android:name="android.provider.action.SMS_MMS_DB_CREATED" />
Dianne Hackborna8e6f872016-05-24 13:22:18 -0700404 <protected-broadcast android:name="android.intent.action.CONTENT_CHANGED" />
405 <protected-broadcast android:name="android.provider.Telephony.MMS_DOWNLOADED" />
Yorke Lee107c4ce2015-06-15 12:08:24 -0700406
Wink Saville948282b2013-08-29 08:55:16 -0700407 <protected-broadcast
408 android:name="com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION" />
409
Amith Yamasanif20d6402014-05-24 15:34:37 -0700410 <!-- Defined in RestrictionsManager -->
411 <protected-broadcast
412 android:name="android.intent.action.PERMISSION_RESPONSE_RECEIVED" />
413 <!-- Defined in RestrictionsManager -->
Andres Morales9740e462014-02-07 16:57:00 -0800414
Amith Yamasanif20d6402014-05-24 15:34:37 -0700415 <protected-broadcast android:name="android.intent.action.REQUEST_PERMISSION" />
Andres Morales9740e462014-02-07 16:57:00 -0800416 <protected-broadcast android:name="android.nfc.handover.intent.action.HANDOVER_STARTED" />
417 <protected-broadcast android:name="android.nfc.handover.intent.action.TRANSFER_DONE" />
418 <protected-broadcast android:name="android.nfc.handover.intent.action.TRANSFER_PROGRESS" />
419 <protected-broadcast android:name="android.nfc.handover.intent.action.TRANSFER_DONE" />
420
Wink Saville05e6dde2014-08-31 19:24:10 -0700421 <protected-broadcast android:name="android.intent.action.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED" />
422 <protected-broadcast android:name="android.intent.action.ACTION_DEFAULT_VOICE_SUBSCRIPTION_CHANGED" />
423 <protected-broadcast android:name="android.intent.action.ACTION_SUBINFO_CONTENT_CHANGE" />
424 <protected-broadcast android:name="android.intent.action.ACTION_SUBINFO_RECORD_UPDATED" />
Amith Yamasanif20d6402014-05-24 15:34:37 -0700425
Wink Saville2af2d572014-10-17 15:03:58 -0700426 <protected-broadcast android:name="android.intent.action.ACTION_SET_RADIO_CAPABILITY_DONE" />
427 <protected-broadcast android:name="android.intent.action.ACTION_SET_RADIO_CAPABILITY_FAILED" />
428
Filip Gruszczynskid2e86402015-02-19 13:05:03 -0800429 <protected-broadcast android:name="android.internal.policy.action.BURN_IN_PROTECTION" />
Rubin Xu5faad8e2015-04-20 17:43:48 +0100430 <protected-broadcast android:name="android.app.action.SYSTEM_UPDATE_POLICY_CHANGED" />
Nicolas Prevot00799002015-07-27 18:15:20 +0100431 <protected-broadcast android:name="android.app.action.DEVICE_OWNER_CHANGED" />
Alex Chaub6a9f942017-11-07 11:28:56 +0800432 <protected-broadcast android:name="android.app.action.MANAGED_USER_CREATED" />
Rubin Xu0a29ecd2015-11-04 15:11:48 +0000433
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700434 <!-- Added in N -->
435 <protected-broadcast android:name="android.intent.action.ANR" />
436 <protected-broadcast android:name="android.intent.action.CALL" />
Svet Ganovc69266d2016-06-08 22:15:32 -0700437 <protected-broadcast android:name="android.intent.action.CALL_PRIVILEGED" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700438 <protected-broadcast android:name="android.intent.action.DROPBOX_ENTRY_ADDED" />
439 <protected-broadcast android:name="android.intent.action.INPUT_METHOD_CHANGED" />
440 <protected-broadcast android:name="android.intent.action.internal_sim_state_changed" />
441 <protected-broadcast android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
442 <protected-broadcast android:name="android.intent.action.PRECISE_CALL_STATE" />
443 <protected-broadcast android:name="android.intent.action.PRECISE_DATA_CONNECTION_STATE_CHANGED" />
444 <protected-broadcast android:name="android.intent.action.SUBSCRIPTION_PHONE_STATE" />
445 <protected-broadcast android:name="android.intent.action.USER_INFO_CHANGED" />
446 <protected-broadcast android:name="android.intent.action.USER_UNLOCKED" />
447 <protected-broadcast android:name="android.intent.action.WALLPAPER_CHANGED" />
448
449 <protected-broadcast android:name="android.app.action.DEVICE_POLICY_MANAGER_STATE_CHANGED" />
Makoto Onuki730a7592016-01-21 12:17:14 -0800450 <protected-broadcast android:name="android.app.action.CHOOSE_PRIVATE_KEY_ALIAS" />
451 <protected-broadcast android:name="android.app.action.DEVICE_ADMIN_DISABLED" />
452 <protected-broadcast android:name="android.app.action.DEVICE_ADMIN_DISABLE_REQUESTED" />
453 <protected-broadcast android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
454 <protected-broadcast android:name="android.app.action.LOCK_TASK_ENTERING" />
455 <protected-broadcast android:name="android.app.action.LOCK_TASK_EXITING" />
456 <protected-broadcast android:name="android.app.action.NOTIFY_PENDING_SYSTEM_UPDATE" />
457 <protected-broadcast android:name="android.app.action.ACTION_PASSWORD_CHANGED" />
458 <protected-broadcast android:name="android.app.action.ACTION_PASSWORD_EXPIRING" />
459 <protected-broadcast android:name="android.app.action.ACTION_PASSWORD_FAILED" />
460 <protected-broadcast android:name="android.app.action.ACTION_PASSWORD_SUCCEEDED" />
461 <protected-broadcast android:name="com.android.server.ACTION_EXPIRED_PASSWORD_NOTIFICATION" />
Jeff Sharkey925cc2a2016-03-02 16:21:58 -0700462
Makoto Onuki730a7592016-01-21 12:17:14 -0800463 <protected-broadcast android:name="android.intent.action.MANAGED_PROFILE_ADDED" />
Jeff Sharkey925cc2a2016-03-02 16:21:58 -0700464 <protected-broadcast android:name="android.intent.action.MANAGED_PROFILE_UNLOCKED" />
465 <protected-broadcast android:name="android.intent.action.MANAGED_PROFILE_REMOVED" />
Makoto Onuki730a7592016-01-21 12:17:14 -0800466
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700467 <protected-broadcast android:name="android.bluetooth.adapter.action.BLE_STATE_CHANGED" />
Dianne Hackborna8e6f872016-05-24 13:22:18 -0700468 <protected-broadcast android:name="com.android.bluetooth.map.USER_CONFIRM_TIMEOUT" />
Ajay Panicker9a236062016-08-17 15:36:24 -0700469 <protected-broadcast android:name="com.android.bluetooth.BluetoothMapContentObserver.action.MESSAGE_SENT" />
470 <protected-broadcast android:name="com.android.bluetooth.BluetoothMapContentObserver.action.MESSAGE_DELIVERY" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700471 <protected-broadcast android:name="android.content.jobscheduler.JOB_DELAY_EXPIRED" />
472 <protected-broadcast android:name="android.content.syncmanager.SYNC_ALARM" />
473 <protected-broadcast android:name="android.media.INTERNAL_RINGER_MODE_CHANGED_ACTION" />
474 <protected-broadcast android:name="android.media.STREAM_DEVICES_CHANGED_ACTION" />
475 <protected-broadcast android:name="android.media.STREAM_MUTE_CHANGED_ACTION" />
476 <protected-broadcast android:name="android.net.sip.SIP_SERVICE_UP" />
477 <protected-broadcast android:name="android.nfc.action.ADAPTER_STATE_CHANGED" />
478 <protected-broadcast android:name="android.os.action.CHARGING" />
479 <protected-broadcast android:name="android.os.action.DISCHARGING" />
480 <protected-broadcast android:name="android.search.action.SEARCHABLES_CHANGED" />
481 <protected-broadcast android:name="android.security.STORAGE_CHANGED" />
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700482 <protected-broadcast android:name="android.security.action.TRUST_STORE_CHANGED" />
483 <protected-broadcast android:name="android.security.action.KEYCHAIN_CHANGED" />
Robin Leed3ee8472016-07-22 14:25:00 +0100484 <protected-broadcast android:name="android.security.action.KEY_ACCESS_CHANGED" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700485 <protected-broadcast android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED" />
486 <protected-broadcast android:name="android.telecom.action.PHONE_ACCOUNT_UNREGISTERED" />
Sailesh Nepald1a28aa2016-01-23 13:51:32 -0800487 <protected-broadcast android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700488 <protected-broadcast android:name="android.telephony.action.CARRIER_CONFIG_CHANGED" />
Malcolm Chen598d24c2017-04-24 18:37:29 -0700489 <protected-broadcast android:name="android.telephony.action.DEFAULT_SUBSCRIPTION_CHANGED" />
490 <protected-broadcast android:name="android.telephony.action.DEFAULT_SMS_SUBSCRIPTION_CHANGED" />
Ta-wei Yena302ac62017-03-23 12:54:36 -0700491 <protected-broadcast android:name="android.telephony.action.SHOW_VOICEMAIL_NOTIFICATION" />
Jeff Sharkey0fc6d032018-03-30 16:25:11 -0600492 <protected-broadcast android:name="android.telephony.action.SUBSCRIPTION_PLANS_CHANGED" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700493
494 <protected-broadcast android:name="com.android.bluetooth.btservice.action.ALARM_WAKEUP" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700495 <protected-broadcast android:name="com.android.server.action.NETWORK_STATS_POLL" />
496 <protected-broadcast android:name="com.android.server.action.NETWORK_STATS_UPDATED" />
497 <protected-broadcast android:name="com.android.server.NetworkTimeUpdateService.action.POLL" />
498 <protected-broadcast android:name="com.android.server.telecom.intent.action.CALLS_ADD_ENTRY" />
499 <protected-broadcast android:name="com.android.settings.location.MODE_CHANGING" />
Marie Janssen977992f2017-06-09 16:38:19 -0700500 <protected-broadcast android:name="com.android.settings.bluetooth.ACTION_DISMISS_PAIRING" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700501
Julia Reynolds2a128742016-11-28 14:29:25 -0500502 <protected-broadcast android:name="NotificationManagerService.TIMEOUT" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700503 <protected-broadcast android:name="ScheduleConditionProvider.EVALUATE" />
Jeff Sharkey37fc7a72016-02-16 09:41:54 -0700504 <protected-broadcast android:name="EventConditionProvider.EVALUATE" />
Julia Reynolds72f1cbb2016-09-19 14:57:31 -0400505 <protected-broadcast android:name="SnoozeHelper.EVALUATE" />
Jeff Sharkey39a275b2015-12-04 14:49:52 -0700506 <protected-broadcast android:name="wifi_scan_available" />
507
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700508 <protected-broadcast android:name="action.cne.started" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700509 <protected-broadcast android:name="android.content.jobscheduler.JOB_DEADLINE_EXPIRED" />
510 <protected-broadcast android:name="android.intent.action.ACTION_UNSOL_RESPONSE_OEM_HOOK_RAW" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700511 <protected-broadcast android:name="android.net.conn.CONNECTIVITY_CHANGE_SUPL" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700512 <protected-broadcast android:name="android.os.action.LIGHT_DEVICE_IDLE_MODE_CHANGED" />
513 <protected-broadcast android:name="android.os.storage.action.VOLUME_STATE_CHANGED" />
Jeff Sharkey029ae4d2016-03-21 17:05:49 -0600514 <protected-broadcast android:name="android.os.storage.action.DISK_SCANNED" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700515 <protected-broadcast android:name="com.android.server.action.UPDATE_TWILIGHT_STATE" />
Jeff Sharkeye9c752a2016-04-12 10:28:03 -0600516 <protected-broadcast android:name="com.android.server.action.RESET_TWILIGHT_AUTO" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700517 <protected-broadcast android:name="com.android.server.device_idle.STEP_IDLE_STATE" />
518 <protected-broadcast android:name="com.android.server.device_idle.STEP_LIGHT_IDLE_STATE" />
519 <protected-broadcast android:name="com.android.server.Wifi.action.TOGGLE_PNO" />
520 <protected-broadcast android:name="intent.action.ACTION_RF_BAND_INFO" />
Dongwon Kang2034a4c2015-12-14 21:57:34 +0900521 <protected-broadcast android:name="android.intent.action.MEDIA_RESOURCE_GRANTED" />
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100522 <protected-broadcast android:name="android.app.action.NETWORK_LOGS_AVAILABLE" />
Rubin Xuc3cd05f2016-01-11 12:11:35 +0000523 <protected-broadcast android:name="android.app.action.SECURITY_LOGS_AVAILABLE" />
Jeff Sharkey4267eac2015-12-14 18:02:43 -0700524
Julia Reynolds9a25da12016-01-06 16:19:28 -0500525 <protected-broadcast android:name="android.app.action.INTERRUPTION_FILTER_CHANGED" />
526 <protected-broadcast android:name="android.app.action.INTERRUPTION_FILTER_CHANGED_INTERNAL" />
527 <protected-broadcast android:name="android.app.action.NOTIFICATION_POLICY_CHANGED" />
528 <protected-broadcast android:name="android.app.action.NOTIFICATION_POLICY_ACCESS_GRANTED_CHANGED" />
529 <protected-broadcast android:name="android.os.action.ACTION_EFFECTS_SUPPRESSOR_CHANGED" />
Julia Reynolds3eb3ffd2017-11-16 10:11:32 -0500530 <protected-broadcast android:name="android.app.action.NOTIFICATION_CHANNEL_BLOCK_STATE_CHANGED" />
531 <protected-broadcast android:name="android.app.action.NOTIFICATION_CHANNEL_GROUP_BLOCK_STATE_CHANGED" />
Julia Reynoldsfc9767b2018-01-22 17:45:16 -0500532 <protected-broadcast android:name="android.app.action.APP_BLOCK_STATE_CHANGED" />
Julia Reynolds9a25da12016-01-06 16:19:28 -0500533
Felipe Lemef3fa0f82016-01-07 12:08:19 -0800534 <protected-broadcast android:name="android.permission.GET_APP_GRANTED_URI_PERMISSIONS" />
535 <protected-broadcast android:name="android.permission.CLEAR_APP_GRANTED_URI_PERMISSIONS" />
536
Peng Xua35b5532016-01-20 00:05:45 -0800537 <protected-broadcast android:name="android.intent.action.DYNAMIC_SENSOR_CHANGED" />
538
Pavel Zhamaitsiakd820abd2016-02-01 12:04:44 -0800539 <protected-broadcast android:name="android.intent.action.ACTION_RADIO_OFF" />
540
Jeff Sharkey37fc7a72016-02-16 09:41:54 -0700541 <protected-broadcast android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" />
Dmitry Dementyeva461e302017-04-12 11:00:48 -0700542 <protected-broadcast android:name="android.accounts.action.ACCOUNT_REMOVED" />
Dmitry Dementyev8882d882017-03-14 17:25:46 -0700543 <protected-broadcast android:name="android.accounts.action.VISIBLE_ACCOUNTS_CHANGED" />
Dmitry Dementyeva461e302017-04-12 11:00:48 -0700544
Jeff Sharkey37fc7a72016-02-16 09:41:54 -0700545 <protected-broadcast android:name="com.android.sync.SYNC_CONN_STATUS_CHANGED" />
546
547 <protected-broadcast android:name="com.android.phone.SIP_INCOMING_CALL" />
548 <protected-broadcast android:name="com.android.phone.SIP_ADD_PHONE" />
549 <protected-broadcast android:name="com.android.phone.SIP_REMOVE_PHONE" />
550 <protected-broadcast android:name="com.android.phone.SIP_CALL_OPTION_CHANGED" />
551
552 <protected-broadcast android:name="android.bluetooth.adapter.action.BLE_ACL_CONNECTED" />
553 <protected-broadcast android:name="android.bluetooth.adapter.action.BLE_ACL_DISCONNECTED" />
554
555 <protected-broadcast android:name="android.bluetooth.input.profile.action.HANDSHAKE" />
556 <protected-broadcast android:name="android.bluetooth.input.profile.action.REPORT" />
557
Jason Monk5dbd4aa2016-02-07 13:13:39 -0500558 <protected-broadcast android:name="android.intent.action.TWILIGHT_CHANGED" />
559
Jeff Sharkey925cc2a2016-03-02 16:21:58 -0700560 <protected-broadcast android:name="com.android.server.fingerprint.ACTION_LOCKOUT_RESET" />
561 <protected-broadcast android:name="android.net.wifi.PASSPOINT_ICON_RECEIVED" />
562 <protected-broadcast android:name="com.android.server.notification.CountdownConditionProvider" />
563
Jeff Sharkeyf9324a82016-04-05 18:30:56 -0600564 <protected-broadcast android:name="com.android.internal.location.ALARM_WAKEUP" />
565 <protected-broadcast android:name="com.android.internal.location.ALARM_TIMEOUT" />
566 <protected-broadcast android:name="android.intent.action.GLOBAL_BUTTON" />
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -0700567
Rubin Xudae6bed2016-04-25 18:47:36 +0100568 <protected-broadcast android:name="android.intent.action.MANAGED_PROFILE_AVAILABLE" />
569 <protected-broadcast android:name="android.intent.action.MANAGED_PROFILE_UNAVAILABLE" />
Ricky Waib1dd80b2016-06-07 18:00:55 +0100570 <protected-broadcast android:name="com.android.server.pm.DISABLE_QUIET_MODE_AFTER_UNLOCK" />
Rubin Xudae6bed2016-04-25 18:47:36 +0100571
Suprabh Shukladbbc7af2016-07-06 16:32:56 -0700572 <protected-broadcast android:name="com.android.server.retaildemo.ACTION_RESET_DEMO" />
Suprabh Shukla4ec430e2016-05-27 14:55:53 -0700573
Robin Lee92b83c62016-08-31 13:27:51 +0100574 <protected-broadcast android:name="android.intent.action.DEVICE_LOCKED_CHANGED" />
575
Felipe Lemefed51fc2016-11-11 14:50:31 -0800576 <!-- Added in O -->
Edman Anjosf9946772016-11-28 16:35:15 +0100577 <protected-broadcast android:name="android.app.action.APPLICATION_DELEGATION_SCOPES_CHANGED" />
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800578 <protected-broadcast android:name="com.android.server.wm.ACTION_REVOKE_SYSTEM_ALERT_WINDOW_PERMISSION" />
Conrad Chen9105bea2017-04-04 15:24:07 -0700579 <protected-broadcast android:name="android.media.tv.action.PARENTAL_CONTROLS_ENABLED_CHANGED" />
Felipe Lemefed51fc2016-11-11 14:50:31 -0800580
Sunny Goyal6d7cb232017-01-30 10:43:18 -0800581 <protected-broadcast android:name="android.content.pm.action.SESSION_COMMITTED" />
Makoto Onuki4120ee32017-03-22 17:50:45 -0700582 <protected-broadcast android:name="android.os.action.USER_RESTRICTIONS_CHANGED" />
Conrad Chen558acf92017-04-05 17:31:01 -0700583 <protected-broadcast android:name="android.media.tv.action.PREVIEW_PROGRAM_ADDED_TO_WATCH_NEXT" />
584 <protected-broadcast android:name="android.media.tv.action.PREVIEW_PROGRAM_BROWSABLE_DISABLED" />
585 <protected-broadcast android:name="android.media.tv.action.WATCH_NEXT_PROGRAM_BROWSABLE_DISABLED" />
Dongwon Kang2e7f5ce2017-04-05 18:33:50 -0700586 <protected-broadcast android:name="android.media.tv.action.CHANNEL_BROWSABLE_REQUESTED" />
Yohei Yukawa603f4d02018-09-11 15:04:58 -0700587 <protected-broadcast android:name="com.android.server.inputmethod.InputMethodManagerService.SHOW_INPUT_METHOD_PICKER" />
Sunny Goyal6d7cb232017-01-30 10:43:18 -0800588
Neil Fullerb1442272017-12-18 15:59:50 +0000589 <!-- Time zone rules update intents fired by the system server -->
590 <protected-broadcast android:name="com.android.intent.action.timezone.RULES_UPDATE_OPERATION" />
591 <protected-broadcast android:name="com.android.intent.action.timezone.TRIGGER_RULES_UPDATE_CHECK" />
592
Michael Wachenschwanzb3c88552017-09-14 15:40:04 -0700593 <!-- Made protected in P (was introduced in JB-MR2) -->
594 <protected-broadcast android:name="android.intent.action.GET_RESTRICTION_ENTRIES" />
Qingxi Li6019f9c2017-12-14 15:36:06 -0800595 <protected-broadcast android:name="android.telephony.euicc.action.OTA_STATUS_CHANGED" />
Michael Wachenschwanzb3c88552017-09-14 15:40:04 -0700596
arangelov8bae4ea2017-12-20 20:26:46 +0000597 <!-- Added in P -->
598 <protected-broadcast android:name="android.app.action.PROFILE_OWNER_CHANGED" />
arangeloveea3e932018-01-11 11:26:36 +0000599 <protected-broadcast android:name="android.app.action.TRANSFER_OWNERSHIP_COMPLETE" />
arangelovb46faf32018-01-17 21:27:40 +0000600 <protected-broadcast android:name="android.app.action.AFFILIATED_PROFILE_TRANSFER_OWNERSHIP_COMPLETE" />
Rubin Xucc391c22018-01-02 20:37:35 +0000601 <protected-broadcast android:name="android.app.action.DATA_SHARING_RESTRICTION_CHANGED" />
Bookatz0eb58ae392018-01-25 15:49:26 -0800602 <protected-broadcast android:name="android.app.action.STATSD_STARTED" />
Kevin Chyn95d628e2018-06-11 11:58:15 -0700603 <protected-broadcast android:name="com.android.server.biometrics.fingerprint.ACTION_LOCKOUT_RESET" />
Kevin Chyn2ffadb32018-06-19 11:29:38 -0700604 <protected-broadcast android:name="com.android.server.biometrics.face.ACTION_LOCKOUT_RESET" />
Rubin Xucc391c22018-01-02 20:37:35 +0000605
lpeter318abc92018-05-04 16:13:14 +0800606 <!-- For IdleController -->
607 <protected-broadcast android:name="android.intent.action.DOCK_IDLE" />
608 <protected-broadcast android:name="android.intent.action.DOCK_ACTIVE" />
609
Serik Beketayevc15cc132018-07-30 19:24:07 -0700610 <!-- Added in Q -->
611
612 <!-- For CarIdlenessTracker -->
613 <protected-broadcast android:name="com.android.server.jobscheduler.GARAGE_MODE_ON" />
614 <protected-broadcast android:name="com.android.server.jobscheduler.GARAGE_MODE_OFF" />
615 <protected-broadcast android:name="com.android.server.jobscheduler.FORCE_IDLE" />
616 <protected-broadcast android:name="com.android.server.jobscheduler.UNFORCE_IDLE" />
617
Makoto Onukia042aaa2018-09-18 16:14:12 -0700618 <protected-broadcast android:name="android.provider.action.DEFAULT_SMS_PACKAGE_CHANGED_INTERNAL" />
619
Svetoslav61a4dd52015-04-09 10:17:40 -0700620 <!-- ====================================================================== -->
621 <!-- RUNTIME PERMISSIONS -->
622 <!-- ====================================================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700624
Svetoslav61a4dd52015-04-09 10:17:40 -0700625 <!-- ====================================================================== -->
626 <!-- Permissions for accessing user's contacts including personal profile -->
627 <!-- ====================================================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700629
Trevor Johns682c24e2016-04-12 10:13:47 -0700630 <!-- Used for runtime permissions related to contacts and profiles on this
631 device. -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700632 <permission-group android:name="android.permission-group.CONTACTS"
Svet Ganov39c8a082015-07-21 11:52:21 -0700633 android:icon="@drawable/perm_group_contacts"
Svetoslav61a4dd52015-04-09 10:17:40 -0700634 android:label="@string/permgrouplab_contacts"
635 android:description="@string/permgroupdesc_contacts"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -0700636 android:request="@string/permgrouprequest_contacts"
Svetoslav61a4dd52015-04-09 10:17:40 -0700637 android:priority="100" />
638
Svetoslav71b6ca62015-06-25 18:19:14 -0700639 <!-- Allows an application to read the user's contacts data.
640 <p>Protection level: dangerous
641 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700642 <permission android:name="android.permission.READ_CONTACTS"
643 android:permissionGroup="android.permission-group.CONTACTS"
644 android:label="@string/permlab_readContacts"
645 android:description="@string/permdesc_readContacts"
646 android:protectionLevel="dangerous" />
647
Svetoslav71b6ca62015-06-25 18:19:14 -0700648 <!-- Allows an application to write the user's contacts data.
649 <p>Protection level: dangerous
650 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700651 <permission android:name="android.permission.WRITE_CONTACTS"
652 android:permissionGroup="android.permission-group.CONTACTS"
653 android:label="@string/permlab_writeContacts"
654 android:description="@string/permdesc_writeContacts"
655 android:protectionLevel="dangerous" />
656
Svetoslav61a4dd52015-04-09 10:17:40 -0700657 <!-- ====================================================================== -->
658 <!-- Permissions for accessing user's calendar -->
659 <!-- ====================================================================== -->
660 <eat-comment />
661
662 <!-- Used for runtime permissions related to user's calendar. -->
663 <permission-group android:name="android.permission-group.CALENDAR"
664 android:icon="@drawable/perm_group_calendar"
665 android:label="@string/permgrouplab_calendar"
666 android:description="@string/permgroupdesc_calendar"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -0700667 android:request="@string/permgrouprequest_calendar"
Svetoslav61a4dd52015-04-09 10:17:40 -0700668 android:priority="200" />
669
Svetoslav71b6ca62015-06-25 18:19:14 -0700670 <!-- Allows an application to read the user's calendar data.
671 <p>Protection level: dangerous
672 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700673 <permission android:name="android.permission.READ_CALENDAR"
674 android:permissionGroup="android.permission-group.CALENDAR"
675 android:label="@string/permlab_readCalendar"
676 android:description="@string/permdesc_readCalendar"
677 android:protectionLevel="dangerous" />
678
Svetoslav71b6ca62015-06-25 18:19:14 -0700679 <!-- Allows an application to write the user's calendar data.
680 <p>Protection level: dangerous
681 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700682 <permission android:name="android.permission.WRITE_CALENDAR"
683 android:permissionGroup="android.permission-group.CALENDAR"
684 android:label="@string/permlab_writeCalendar"
685 android:description="@string/permdesc_writeCalendar"
686 android:protectionLevel="dangerous" />
687
688 <!-- ====================================================================== -->
689 <!-- Permissions for accessing and modifying user's SMS messages -->
690 <!-- ====================================================================== -->
691 <eat-comment />
692
693 <!-- Used for runtime permissions related to user's SMS messages. -->
694 <permission-group android:name="android.permission-group.SMS"
Svet Ganov39c8a082015-07-21 11:52:21 -0700695 android:icon="@drawable/perm_group_sms"
Svetoslav61a4dd52015-04-09 10:17:40 -0700696 android:label="@string/permgrouplab_sms"
697 android:description="@string/permgroupdesc_sms"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -0700698 android:request="@string/permgrouprequest_sms"
Svetoslav61a4dd52015-04-09 10:17:40 -0700699 android:priority="300" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700700
Svetoslav71b6ca62015-06-25 18:19:14 -0700701 <!-- Allows an application to send SMS messages.
702 <p>Protection level: dangerous
703 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700704 <permission android:name="android.permission.SEND_SMS"
Svetoslav61a4dd52015-04-09 10:17:40 -0700705 android:permissionGroup="android.permission-group.SMS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700706 android:label="@string/permlab_sendSms"
Svetoslav61a4dd52015-04-09 10:17:40 -0700707 android:description="@string/permdesc_sendSms"
708 android:permissionFlags="costsMoney"
709 android:protectionLevel="dangerous" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700710
Svetoslav71b6ca62015-06-25 18:19:14 -0700711 <!-- Allows an application to receive SMS messages.
712 <p>Protection level: dangerous
713 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 <permission android:name="android.permission.RECEIVE_SMS"
Svetoslav61a4dd52015-04-09 10:17:40 -0700715 android:permissionGroup="android.permission-group.SMS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 android:label="@string/permlab_receiveSms"
Svetoslav61a4dd52015-04-09 10:17:40 -0700717 android:description="@string/permdesc_receiveSms"
718 android:protectionLevel="dangerous"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719
Svetoslav71b6ca62015-06-25 18:19:14 -0700720 <!-- Allows an application to read SMS messages.
721 <p>Protection level: dangerous
722 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700723 <permission android:name="android.permission.READ_SMS"
724 android:permissionGroup="android.permission-group.SMS"
725 android:label="@string/permlab_readSms"
726 android:description="@string/permdesc_readSms"
727 android:protectionLevel="dangerous" />
728
Svetoslav71b6ca62015-06-25 18:19:14 -0700729 <!-- Allows an application to receive WAP push messages.
730 <p>Protection level: dangerous
731 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700732 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
733 android:permissionGroup="android.permission-group.SMS"
734 android:label="@string/permlab_receiveWapPush"
735 android:description="@string/permdesc_receiveWapPush"
736 android:protectionLevel="dangerous" />
737
Svetoslav71b6ca62015-06-25 18:19:14 -0700738 <!-- Allows an application to monitor incoming MMS messages.
739 <p>Protection level: dangerous
740 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 <permission android:name="android.permission.RECEIVE_MMS"
Svetoslav61a4dd52015-04-09 10:17:40 -0700742 android:permissionGroup="android.permission-group.SMS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800743 android:label="@string/permlab_receiveMms"
Svetoslav61a4dd52015-04-09 10:17:40 -0700744 android:description="@string/permdesc_receiveMms"
745 android:protectionLevel="dangerous" />
Jake Hambyab79ee42011-04-26 16:26:46 -0700746
Philip P. Moltmann33115152018-04-11 13:39:36 -0700747 <!-- @TestApi Allows an application to read previously received cell broadcast
Jake Hambyc3296ff2012-04-18 12:32:18 -0700748 messages and to register a content observer to get notifications when
749 a cell broadcast has been received and added to the database. For
750 emergency alerts, the database is updated immediately after the
751 alert dialog and notification sound/vibration/speech are presented.
752 The "read" column is then updated after the user dismisses the alert.
753 This enables supplementary emergency assistance apps to start loading
754 additional emergency information (if Internet access is available)
755 when the alert is first received, and to delay presenting the info
756 to the user until after the initial alert dialog is dismissed.
Svetoslav71b6ca62015-06-25 18:19:14 -0700757 <p>Protection level: dangerous
Jake Hambyc3296ff2012-04-18 12:32:18 -0700758 @hide Pending API council approval -->
759 <permission android:name="android.permission.READ_CELL_BROADCASTS"
Svetoslav61a4dd52015-04-09 10:17:40 -0700760 android:permissionGroup="android.permission-group.SMS"
Jake Hambyc3296ff2012-04-18 12:32:18 -0700761 android:label="@string/permlab_readCellBroadcasts"
Svetoslav61a4dd52015-04-09 10:17:40 -0700762 android:description="@string/permdesc_readCellBroadcasts"
763 android:protectionLevel="dangerous" />
Hemant Gupta8949bfb2013-08-16 14:57:55 +0530764
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700765 <!-- ====================================================================== -->
766 <!-- Permissions for accessing external storage -->
767 <!-- ====================================================================== -->
768 <eat-comment />
769
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600770 <!-- Used for runtime permissions related to the shared external storage.
771 @deprecated replaced by new strongly-typed permission groups in Q. -->
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700772 <permission-group android:name="android.permission-group.STORAGE"
773 android:icon="@drawable/perm_group_storage"
774 android:label="@string/permgrouplab_storage"
775 android:description="@string/permgroupdesc_storage"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -0700776 android:request="@string/permgrouprequest_storage"
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700777 android:priority="900" />
778
779 <!-- Allows an application to read from external storage.
780 <p>Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly
781 granted this permission.</p>
782 <p>This permission is enforced starting in API level 19. Before API level 19, this
783 permission is not enforced and all apps still have access to read from external storage.
784 You can test your app with the permission enforced by enabling <em>Protect USB
785 storage</em> under Developer options in the Settings app on a device running Android 4.1 or
786 higher.</p>
787 <p>Also starting in API level 19, this permission is <em>not</em> required to
788 read/write files in your application-specific directories returned by
789 {@link android.content.Context#getExternalFilesDir} and
790 {@link android.content.Context#getExternalCacheDir}.
791 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
792 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
793 minSdkVersion}</a> and <a
794 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
795 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
796 grants your app this permission. If you don't need this permission, be sure your <a
797 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
Svetoslav71b6ca62015-06-25 18:19:14 -0700798 targetSdkVersion}</a> is 4 or higher.
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600799 @deprecated replaced by new strongly-typed permission groups in Q.
Svetoslav71b6ca62015-06-25 18:19:14 -0700800 -->
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700801 <permission android:name="android.permission.READ_EXTERNAL_STORAGE"
802 android:permissionGroup="android.permission-group.STORAGE"
803 android:label="@string/permlab_sdcardRead"
804 android:description="@string/permdesc_sdcardRead"
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600805 android:protectionLevel="normal" />
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700806
807 <!-- Allows an application to write to external storage.
808 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
809 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
810 minSdkVersion}</a> and <a
811 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
812 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
813 grants your app this permission. If you don't need this permission, be sure your <a
814 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
815 targetSdkVersion}</a> is 4 or higher.
816 <p>Starting in API level 19, this permission is <em>not</em> required to
817 read/write files in your application-specific directories returned by
818 {@link android.content.Context#getExternalFilesDir} and
Svetoslav71b6ca62015-06-25 18:19:14 -0700819 {@link android.content.Context#getExternalCacheDir}.
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600820 @deprecated replaced by new strongly-typed permission groups in Q.
Svetoslav71b6ca62015-06-25 18:19:14 -0700821 -->
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700822 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
823 android:permissionGroup="android.permission-group.STORAGE"
824 android:label="@string/permlab_sdcardWrite"
825 android:description="@string/permdesc_sdcardWrite"
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600826 android:protectionLevel="normal" />
827
828 <!-- Runtime permission controlling access to the user's shared aural media
829 collection. -->
830 <permission-group android:name="android.permission-group.MEDIA_AURAL"
831 android:icon="@drawable/perm_group_aural"
832 android:label="@string/permgrouplab_aural"
833 android:description="@string/permgroupdesc_aural"
834 android:request="@string/permgrouprequest_aural"
835 android:priority="910" />
836
837 <!-- Allows an application to read the user's shared audio collection. -->
838 <permission android:name="android.permission.READ_MEDIA_AUDIO"
839 android:permissionGroup="android.permission-group.MEDIA_AURAL"
840 android:label="@string/permlab_audioRead"
841 android:description="@string/permdesc_audioRead"
Svet Ganovee7fb4d2015-06-11 09:58:21 -0700842 android:protectionLevel="dangerous" />
843
Jeff Sharkey4aacd8b2018-07-24 15:24:21 -0600844 <!-- Allows an application to modify the user's shared audio collection. -->
845 <permission android:name="android.permission.WRITE_MEDIA_AUDIO"
846 android:permissionGroup="android.permission-group.MEDIA_AURAL"
847 android:label="@string/permlab_audioWrite"
848 android:description="@string/permdesc_audioWrite"
849 android:protectionLevel="dangerous" />
850
851 <!-- Runtime permission controlling access to the user's shared visual media
852 collection, including images and videos. -->
853 <permission-group android:name="android.permission-group.MEDIA_VISUAL"
854 android:icon="@drawable/perm_group_visual"
855 android:label="@string/permgrouplab_visual"
856 android:description="@string/permgroupdesc_visual"
857 android:request="@string/permgrouprequest_visual"
858 android:priority="920" />
859
860 <!-- Allows an application to read the user's shared images collection. -->
861 <permission android:name="android.permission.READ_MEDIA_IMAGES"
862 android:permissionGroup="android.permission-group.MEDIA_VISUAL"
863 android:label="@string/permlab_imagesRead"
864 android:description="@string/permdesc_imagesRead"
865 android:protectionLevel="dangerous" />
866
867 <!-- Allows an application to modify the user's shared images collection. -->
868 <permission android:name="android.permission.WRITE_MEDIA_IMAGES"
869 android:permissionGroup="android.permission-group.MEDIA_VISUAL"
870 android:label="@string/permlab_imagesWrite"
871 android:description="@string/permdesc_imagesWrite"
872 android:protectionLevel="dangerous" />
873
874 <!-- Allows an application to read the user's shared video collection. -->
875 <permission android:name="android.permission.READ_MEDIA_VIDEO"
876 android:permissionGroup="android.permission-group.MEDIA_VISUAL"
877 android:label="@string/permlab_videoRead"
878 android:description="@string/permdesc_videoRead"
879 android:protectionLevel="dangerous" />
880
881 <!-- Allows an application to modify the user's shared video collection. -->
882 <permission android:name="android.permission.WRITE_MEDIA_VIDEO"
883 android:permissionGroup="android.permission-group.MEDIA_VISUAL"
884 android:label="@string/permlab_videoWrite"
885 android:description="@string/permdesc_videoWrite"
886 android:protectionLevel="dangerous" />
887
888 <!-- Allows an application to access any geographic locations persisted in the
889 user's shared collection. -->
890 <permission android:name="android.permission.ACCESS_MEDIA_LOCATION"
891 android:permissionGroup="android.permission-group.MEDIA_VISUAL"
892 android:label="@string/permlab_mediaLocation"
893 android:description="@string/permdesc_mediaLocation"
894 android:protectionLevel="dangerous" />
895
896 <!-- @hide @SystemApi
897 Allows an application to modify OBB files visible to other apps. -->
898 <permission android:name="android.permission.WRITE_OBB"
899 android:protectionLevel="signature|privileged" />
900
Svetoslav61a4dd52015-04-09 10:17:40 -0700901 <!-- ====================================================================== -->
902 <!-- Permissions for accessing the device location -->
903 <!-- ====================================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700904 <eat-comment />
905
Svetoslav61a4dd52015-04-09 10:17:40 -0700906 <!-- Used for permissions that allow accessing the device location. -->
907 <permission-group android:name="android.permission-group.LOCATION"
908 android:icon="@drawable/perm_group_location"
909 android:label="@string/permgrouplab_location"
910 android:description="@string/permgroupdesc_location"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -0700911 android:request="@string/permgrouprequest_location"
Philip P. Moltmann4a6dff02018-06-12 16:23:54 -0700912 android:requestDetail="@string/permgrouprequestdetail_location"
913 android:backgroundRequest="@string/permgroupbackgroundrequest_location"
914 android:backgroundRequestDetail="@string/permgroupbackgroundrequestdetail_location"
Svetoslav61a4dd52015-04-09 10:17:40 -0700915 android:priority="400" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -0700916
Svetoslav71b6ca62015-06-25 18:19:14 -0700917 <!-- Allows an app to access precise location.
Scott Mainb1874562016-11-15 15:22:32 -0800918 Alternatively, you might want {@link #ACCESS_COARSE_LOCATION}.
Svetoslav71b6ca62015-06-25 18:19:14 -0700919 <p>Protection level: dangerous
920 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700921 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
922 android:permissionGroup="android.permission-group.LOCATION"
923 android:label="@string/permlab_accessFineLocation"
924 android:description="@string/permdesc_accessFineLocation"
Philip P. Moltmann4a6dff02018-06-12 16:23:54 -0700925 android:backgroundPermission="android.permission.ACCESS_BACKGROUND_LOCATION"
Todd Kennedyc247fa12017-06-02 10:29:22 -0700926 android:protectionLevel="dangerous|instant" />
Svetoslav61a4dd52015-04-09 10:17:40 -0700927
Svetoslav71b6ca62015-06-25 18:19:14 -0700928 <!-- Allows an app to access approximate location.
Scott Mainb1874562016-11-15 15:22:32 -0800929 Alternatively, you might want {@link #ACCESS_FINE_LOCATION}.
Svetoslav71b6ca62015-06-25 18:19:14 -0700930 <p>Protection level: dangerous
931 -->
Svetoslav61a4dd52015-04-09 10:17:40 -0700932 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
933 android:permissionGroup="android.permission-group.LOCATION"
934 android:label="@string/permlab_accessCoarseLocation"
935 android:description="@string/permdesc_accessCoarseLocation"
Philip P. Moltmann4a6dff02018-06-12 16:23:54 -0700936 android:backgroundPermission="android.permission.ACCESS_BACKGROUND_LOCATION"
Todd Kennedyc247fa12017-06-02 10:29:22 -0700937 android:protectionLevel="dangerous|instant" />
Svetoslav61a4dd52015-04-09 10:17:40 -0700938
Dianne Hackbornafba8162018-04-26 13:46:22 -0700939 <!-- Allows an app to access location in the background. If you
940 are requesting this, you should also request {@link #ACCESS_FINE_LOCATION}.
941 Requesting this by itself is not sufficient to give you
942 location access.
943 <p>Protection level: dangerous
Dianne Hackbornafba8162018-04-26 13:46:22 -0700944 -->
945 <permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"
946 android:permissionGroup="android.permission-group.LOCATION"
947 android:label="@string/permlab_accessBackgroundLocation"
948 android:description="@string/permdesc_accessBackgroundLocation"
949 android:protectionLevel="dangerous|instant" />
950
Svetoslav61a4dd52015-04-09 10:17:40 -0700951 <!-- ====================================================================== -->
Dianne Hackborned23b9b2018-04-27 16:56:35 -0700952 <!-- Permissions for accessing the call log -->
953 <!-- ====================================================================== -->
954 <eat-comment />
955
956 <!-- Used for permissions that are associated telephony features. -->
957 <permission-group android:name="android.permission-group.CALL_LOG"
Fan Zhang8e6adb12018-05-29 14:22:16 -0700958 android:icon="@drawable/perm_group_call_log"
Dianne Hackborned23b9b2018-04-27 16:56:35 -0700959 android:label="@string/permgrouplab_calllog"
960 android:description="@string/permgroupdesc_calllog"
961 android:request="@string/permgrouprequest_calllog"
962 android:priority="450" />
963
964 <!-- Allows an application to access the IMS call service: making and
965 modifying a call
966 <p>Protection level: signature|privileged
967 @hide
968 -->
969 <permission android:name="android.permission.ACCESS_IMS_CALL_SERVICE"
970 android:label="@string/permlab_accessImsCallService"
971 android:description="@string/permdesc_accessImsCallService"
972 android:protectionLevel="signature|privileged" />
973
974 <!-- Allows an application to read the user's call log.
975 <p class="note"><strong>Note:</strong> If your app uses the
976 {@link #READ_CONTACTS} permission and <em>both</em> your <a
977 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
978 minSdkVersion}</a> and <a
979 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
980 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
981 grants your app this permission. If you don't need this permission, be sure your <a
982 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
983 targetSdkVersion}</a> is 16 or higher.</p>
984 <p>Protection level: dangerous
985 -->
986 <permission android:name="android.permission.READ_CALL_LOG"
987 android:permissionGroup="android.permission-group.CALL_LOG"
988 android:label="@string/permlab_readCallLog"
989 android:description="@string/permdesc_readCallLog"
990 android:protectionLevel="dangerous" />
991
992 <!-- Allows an application to write (but not read) the user's
993 call log data.
994 <p class="note"><strong>Note:</strong> If your app uses the
995 {@link #WRITE_CONTACTS} permission and <em>both</em> your <a
996 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
997 minSdkVersion}</a> and <a
998 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
999 targetSdkVersion}</a> values are set to 15 or lower, the system implicitly
1000 grants your app this permission. If you don't need this permission, be sure your <a
1001 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1002 targetSdkVersion}</a> is 16 or higher.</p>
1003 <p>Protection level: dangerous
1004 -->
1005 <permission android:name="android.permission.WRITE_CALL_LOG"
1006 android:permissionGroup="android.permission-group.CALL_LOG"
1007 android:label="@string/permlab_writeCallLog"
1008 android:description="@string/permdesc_writeCallLog"
1009 android:protectionLevel="dangerous" />
1010
1011 <!-- Allows an application to see the number being dialed during an outgoing
1012 call with the option to redirect the call to a different number or
1013 abort the call altogether.
1014 <p>Protection level: dangerous
1015 -->
1016 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
1017 android:permissionGroup="android.permission-group.CALL_LOG"
1018 android:label="@string/permlab_processOutgoingCalls"
1019 android:description="@string/permdesc_processOutgoingCalls"
1020 android:protectionLevel="dangerous" />
1021
1022 <!-- ====================================================================== -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001023 <!-- Permissions for accessing the device telephony -->
1024 <!-- ====================================================================== -->
1025 <eat-comment />
1026
1027 <!-- Used for permissions that are associated telephony features. -->
1028 <permission-group android:name="android.permission-group.PHONE"
1029 android:icon="@drawable/perm_group_phone_calls"
1030 android:label="@string/permgrouplab_phone"
1031 android:description="@string/permgroupdesc_phone"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -07001032 android:request="@string/permgrouprequest_phone"
Svetoslav61a4dd52015-04-09 10:17:40 -07001033 android:priority="500" />
1034
Hall Liu7700ee32016-03-24 17:34:19 -07001035 <!-- Allows read only access to phone state, including the phone number of the device,
1036 current cellular network information, the status of any ongoing calls, and a list of any
1037 {@link android.telecom.PhoneAccount}s registered on the device.
Svetoslav61a4dd52015-04-09 10:17:40 -07001038 <p class="note"><strong>Note:</strong> If <em>both</em> your <a
1039 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code
1040 minSdkVersion}</a> and <a
1041 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
1042 targetSdkVersion}</a> values are set to 3 or lower, the system implicitly
1043 grants your app this permission. If you don't need this permission, be sure your <a
1044 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
Svetoslav71b6ca62015-06-25 18:19:14 -07001045 targetSdkVersion}</a> is 4 or higher.
1046 <p>Protection level: dangerous
1047 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001048 <permission android:name="android.permission.READ_PHONE_STATE"
1049 android:permissionGroup="android.permission-group.PHONE"
1050 android:label="@string/permlab_readPhoneState"
1051 android:description="@string/permdesc_readPhoneState"
Chad Brubaker73ec8f92016-11-10 11:24:40 -08001052 android:protectionLevel="dangerous" />
1053
Chad Brubaker0c1651f2017-03-30 16:29:10 -07001054 <!-- Allows read access to the device's phone number(s). This is a subset of the capabilities
Todd Kennedyc247fa12017-06-02 10:29:22 -07001055 granted by {@link #READ_PHONE_STATE} but is exposed to instant applications.
Chad Brubaker73ec8f92016-11-10 11:24:40 -08001056 <p>Protection level: dangerous-->
Chad Brubaker0c1651f2017-03-30 16:29:10 -07001057 <permission android:name="android.permission.READ_PHONE_NUMBERS"
Chad Brubaker73ec8f92016-11-10 11:24:40 -08001058 android:permissionGroup="android.permission-group.PHONE"
Chad Brubaker1d990792017-04-10 10:48:35 -07001059 android:label="@string/permlab_readPhoneNumbers"
Chad Brubaker0c1651f2017-03-30 16:29:10 -07001060 android:description="@string/permdesc_readPhoneNumbers"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001061 android:protectionLevel="dangerous|instant" />
Svetoslav61a4dd52015-04-09 10:17:40 -07001062
1063 <!-- Allows an application to initiate a phone call without going through
Svetoslav71b6ca62015-06-25 18:19:14 -07001064 the Dialer user interface for the user to confirm the call.
1065 <p>Protection level: dangerous
1066 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001067 <permission android:name="android.permission.CALL_PHONE"
1068 android:permissionGroup="android.permission-group.PHONE"
1069 android:permissionFlags="costsMoney"
1070 android:label="@string/permlab_callPhone"
1071 android:description="@string/permdesc_callPhone"
1072 android:protectionLevel="dangerous" />
1073
Svetoslav71b6ca62015-06-25 18:19:14 -07001074 <!-- Allows an application to add voicemails into the system.
1075 <p>Protection level: dangerous
1076 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001077 <permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL"
1078 android:permissionGroup="android.permission-group.PHONE"
1079 android:label="@string/permlab_addVoicemail"
1080 android:description="@string/permdesc_addVoicemail"
1081 android:protectionLevel="dangerous" />
1082
Svetoslav71b6ca62015-06-25 18:19:14 -07001083 <!-- Allows an application to use SIP service.
1084 <p>Protection level: dangerous
1085 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001086 <permission android:name="android.permission.USE_SIP"
1087 android:permissionGroup="android.permission-group.PHONE"
1088 android:description="@string/permdesc_use_sip"
1089 android:label="@string/permlab_use_sip"
1090 android:protectionLevel="dangerous"/>
1091
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001092 <!-- Allows the app to answer an incoming phone call.
1093 <p>Protection level: dangerous
1094 -->
1095 <permission android:name="android.permission.ANSWER_PHONE_CALLS"
1096 android:permissionGroup="android.permission-group.PHONE"
1097 android:label="@string/permlab_answerPhoneCalls"
1098 android:description="@string/permdesc_answerPhoneCalls"
Chad Brubakera5d70a12017-03-23 11:04:50 -07001099 android:protectionLevel="dangerous|runtime" />
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001100
Tyler Gunnbde7b4a2017-04-28 10:45:23 -07001101 <!-- Allows a calling application which manages it own calls through the self-managed
1102 {@link android.telecom.ConnectionService} APIs. See
koprivab08f4642018-10-02 16:47:42 -07001103 {@link android.telecom.PhoneAccount#CAPABILITY_SELF_MANAGED} for more information on the
Tyler Gunnbde7b4a2017-04-28 10:45:23 -07001104 self-managed ConnectionService APIs.
1105 <p>Protection level: normal
1106 -->
1107 <permission android:name="android.permission.MANAGE_OWN_CALLS"
1108 android:label="@string/permlab_manageOwnCalls"
1109 android:description="@string/permdesc_manageOwnCalls"
1110 android:protectionLevel="normal" />
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001111
Tyler Gunn79bc1ec2018-01-22 15:17:54 -08001112 <!-- Allows a calling app to continue a call which was started in another app. An example is a
1113 video calling app that wants to continue a voice call on the user's mobile network.<p>
1114 When the handover of a call from one app to another takes place, there are two devices
1115 which are involved in the handover; the initiating and receiving devices. The initiating
1116 device is where the request to handover the call was started, and the receiving device is
1117 where the handover request is confirmed by the other party.<p>
1118 This permission protects access to the
1119 {@link android.telecom.TelecomManager#acceptHandover(Uri, int, PhoneAccountHandle)} which
1120 the receiving side of the handover uses to accept a handover.
1121 <p>Protection level: dangerous
1122 -->
1123 <permission android:name="android.permission.ACCEPT_HANDOVER"
1124 android:permissionGroup="android.permission-group.PHONE"
1125 android.label="@string/permlab_acceptHandover"
1126 android:description="@string/permdesc_acceptHandovers"
1127 android:protectionLevel="dangerous" />
1128
Svetoslav61a4dd52015-04-09 10:17:40 -07001129 <!-- ====================================================================== -->
1130 <!-- Permissions for accessing the device microphone -->
1131 <!-- ====================================================================== -->
1132 <eat-comment />
1133
1134 <!-- Used for permissions that are associated with accessing
1135 microphone audio from the device. Note that phone calls also capture audio
1136 but are in a separate (more visible) permission group. -->
1137 <permission-group android:name="android.permission-group.MICROPHONE"
1138 android:icon="@drawable/perm_group_microphone"
1139 android:label="@string/permgrouplab_microphone"
1140 android:description="@string/permgroupdesc_microphone"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -07001141 android:request="@string/permgrouprequest_microphone"
Svetoslav61a4dd52015-04-09 10:17:40 -07001142 android:priority="600" />
1143
Svetoslav71b6ca62015-06-25 18:19:14 -07001144 <!-- Allows an application to record audio.
1145 <p>Protection level: dangerous
1146 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001147 <permission android:name="android.permission.RECORD_AUDIO"
1148 android:permissionGroup="android.permission-group.MICROPHONE"
1149 android:label="@string/permlab_recordAudio"
1150 android:description="@string/permdesc_recordAudio"
Chad Brubaker27833eb2017-10-09 10:50:46 -07001151 android:protectionLevel="dangerous|instant"/>
Svetoslav61a4dd52015-04-09 10:17:40 -07001152
1153 <!-- ====================================================================== -->
Zimuzo72baeaf2018-10-05 11:55:30 +01001154 <!-- Permissions for activity recognition -->
1155 <!-- ====================================================================== -->
1156 <eat-comment />
1157
1158 <!-- Used for permissions that are associated with activity recognition.
1159 TODO(zezeozue). STOPSHIP: Add icon -->
1160 <permission-group android:name="android.permission-group.ACTIVITY_RECOGNITION"
1161 android:label="@string/permgrouplab_activityRecognition"
1162 android:description="@string/permgroupdesc_activityRecognition"
1163 android:request="@string/permgrouprequest_activityRecognition"
1164 android:priority="1000" />
1165
1166 <!-- Allows an application to recognize physical activity.
1167 <p>Protection level: dangerous
1168 -->
1169 <permission android:name="android.permission.ACTIVITY_RECOGNITION"
1170 android:permissionGroup="android.permission-group.ACTIVITY_RECOGNITION"
1171 android:label="@string/permlab_activityRecognition"
1172 android:description="@string/permdesc_activityRecognition"
1173 android:protectionLevel="dangerous|instant" />
1174
1175 <!-- ====================================================================== -->
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -07001176 <!-- Permissions for accessing the UCE Service -->
1177 <!-- ====================================================================== -->
1178
1179 <!-- @hide Allows an application to Access UCE-Presence.
Peter Visontayfb5883e2017-07-10 16:26:58 +01001180 <p>Protection level: signature|privileged
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -07001181 -->
1182 <permission android:name="android.permission.ACCESS_UCE_PRESENCE_SERVICE"
1183 android:permissionGroup="android.permission-group.PHONE"
Peter Visontayfb5883e2017-07-10 16:26:58 +01001184 android:protectionLevel="signature|privileged"/>
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -07001185
1186 <!-- @hide Allows an application to Access UCE-OPTIONS.
Peter Visontayfb5883e2017-07-10 16:26:58 +01001187 <p>Protection level: signature|privileged
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -07001188 -->
1189 <permission android:name="android.permission.ACCESS_UCE_OPTIONS_SERVICE"
1190 android:permissionGroup="android.permission-group.PHONE"
Peter Visontayfb5883e2017-07-10 16:26:58 +01001191 android:protectionLevel="signature|privileged"/>
Pavel Zhamaitsiakcfedd202016-03-18 16:09:50 -07001192
1193
1194
1195 <!-- ====================================================================== -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001196 <!-- Permissions for accessing the device camera -->
1197 <!-- ====================================================================== -->
1198 <eat-comment />
1199
1200 <!-- Used for permissions that are associated with accessing
1201 camera or capturing images/video from the device. -->
1202 <permission-group android:name="android.permission-group.CAMERA"
1203 android:icon="@drawable/perm_group_camera"
1204 android:label="@string/permgrouplab_camera"
1205 android:description="@string/permgroupdesc_camera"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -07001206 android:request="@string/permgrouprequest_camera"
Svetoslav61a4dd52015-04-09 10:17:40 -07001207 android:priority="700" />
1208
1209 <!-- Required to be able to access the camera device.
kopriva4234f152018-09-29 13:34:24 -07001210 <p>This will automatically enforce the
1211 <a href="{@docRoot}guide/topics/manifest/uses-feature-element.html">
1212 uses-feature</a> manifest element for <em>all</em> camera features.
Svetoslav61a4dd52015-04-09 10:17:40 -07001213 If you do not require all camera features or can properly operate if a camera
1214 is not available, then you must modify your manifest as appropriate in order to
Svetoslav71b6ca62015-06-25 18:19:14 -07001215 install on devices that don't support all camera features.</p>
1216 <p>Protection level: dangerous
1217 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001218 <permission android:name="android.permission.CAMERA"
1219 android:permissionGroup="android.permission-group.CAMERA"
1220 android:label="@string/permlab_camera"
1221 android:description="@string/permdesc_camera"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001222 android:protectionLevel="dangerous|instant" />
Svetoslav61a4dd52015-04-09 10:17:40 -07001223
1224
1225 <!-- ====================================================================== -->
1226 <!-- Permissions for accessing the device sensors -->
1227 <!-- ====================================================================== -->
1228 <eat-comment />
1229
1230 <!-- Used for permissions that are associated with accessing
Andrew Solovay175d9902017-10-27 13:55:07 -07001231 body or environmental sensors. -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001232 <permission-group android:name="android.permission-group.SENSORS"
Svet Ganov39c8a082015-07-21 11:52:21 -07001233 android:icon="@drawable/perm_group_sensors"
Svetoslav61a4dd52015-04-09 10:17:40 -07001234 android:label="@string/permgrouplab_sensors"
1235 android:description="@string/permgroupdesc_sensors"
Philip P. Moltmann27ffeb32017-07-06 13:54:46 -07001236 android:request="@string/permgrouprequest_sensors"
Svetoslav61a4dd52015-04-09 10:17:40 -07001237 android:priority="800" />
Dave Santoro43251332011-05-11 11:39:54 -07001238
Aravind Akellacd9a7bb2014-04-07 22:55:21 +00001239 <!-- Allows an application to access data from sensors that the user uses to
Svetoslav71b6ca62015-06-25 18:19:14 -07001240 measure what is happening inside his/her body, such as heart rate.
1241 <p>Protection level: dangerous -->
Aravind Akellacd9a7bb2014-04-07 22:55:21 +00001242 <permission android:name="android.permission.BODY_SENSORS"
Svetoslav61a4dd52015-04-09 10:17:40 -07001243 android:permissionGroup="android.permission-group.SENSORS"
Aravind Akellacd9a7bb2014-04-07 22:55:21 +00001244 android:label="@string/permlab_bodySensors"
Svetoslav61a4dd52015-04-09 10:17:40 -07001245 android:description="@string/permdesc_bodySensors"
1246 android:protectionLevel="dangerous" />
Aravind Akellacd9a7bb2014-04-07 22:55:21 +00001247
Svetoslav71b6ca62015-06-25 18:19:14 -07001248 <!-- Allows an app to use fingerprint hardware.
1249 <p>Protection level: normal
Vishwath Mohancf87df12018-03-20 22:57:17 -07001250 @deprecated Applications should request {@link
1251 android.Manifest.permission#USE_BIOMETRIC} instead
Svetoslav71b6ca62015-06-25 18:19:14 -07001252 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001253 <permission android:name="android.permission.USE_FINGERPRINT"
Svet Ganov321f0152015-05-16 22:51:50 -07001254 android:permissionGroup="android.permission-group.SENSORS"
Svetoslav61a4dd52015-04-09 10:17:40 -07001255 android:label="@string/permlab_useFingerprint"
1256 android:description="@string/permdesc_useFingerprint"
Jorim Jaggid6bd9da2015-05-20 12:04:41 -07001257 android:protectionLevel="normal" />
Svetoslav61a4dd52015-04-09 10:17:40 -07001258
Vishwath Mohancf87df12018-03-20 22:57:17 -07001259 <!-- Allows an app to use device supported biometric modalities.
1260 <p>Protection level: normal
1261 -->
1262 <permission android:name="android.permission.USE_BIOMETRIC"
1263 android:permissionGroup="android.permission-group.SENSORS"
1264 android:label="@string/permlab_useBiometric"
1265 android:description="@string/permdesc_useBiometric"
1266 android:protectionLevel="normal" />
1267
Svetoslav61a4dd52015-04-09 10:17:40 -07001268 <!-- ====================================================================== -->
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001269 <!-- REMOVED PERMISSIONS -->
1270 <!-- ====================================================================== -->
1271
1272 <!-- @hide We need to keep this around for backwards compatibility -->
1273 <permission android:name="android.permission.READ_PROFILE"
1274 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001275 android:permissionFlags="removed"/>
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001276
1277 <!-- @hide We need to keep this around for backwards compatibility -->
1278 <permission android:name="android.permission.WRITE_PROFILE"
1279 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001280 android:permissionFlags="removed"/>
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001281
1282 <!-- @hide We need to keep this around for backwards compatibility -->
1283 <permission android:name="android.permission.READ_SOCIAL_STREAM"
1284 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001285 android:permissionFlags="removed"/>
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001286
1287 <!-- @hide We need to keep this around for backwards compatibility -->
1288 <permission android:name="android.permission.WRITE_SOCIAL_STREAM"
1289 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001290 android:permissionFlags="removed"/>
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001291
Svetoslavc5e43c52015-06-23 17:13:26 -07001292 <!-- @hide We need to keep this around for backwards compatibility -->
1293 <permission android:name="android.permission.READ_USER_DICTIONARY"
1294 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001295 android:permissionFlags="removed"/>
Svetoslavc5e43c52015-06-23 17:13:26 -07001296
1297 <!-- @hide We need to keep this around for backwards compatibility -->
1298 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
1299 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001300 android:permissionFlags="removed"/>
Svetoslavc5e43c52015-06-23 17:13:26 -07001301
Svet Ganovf1418ae2015-08-20 06:57:31 -07001302 <!-- @hide We need to keep this around for backwards compatibility -->
1303 <permission android:name="android.permission.WRITE_SMS"
1304 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001305 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001306
1307 <!-- @hide We need to keep this around for backwards compatibility -->
1308 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
1309 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001310 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001311
1312 <!-- @hide We need to keep this around for backwards compatibility -->
1313 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
1314 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001315 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001316
1317 <!-- @hide We need to keep this around for backwards compatibility -->
1318 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
1319 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001320 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001321
1322 <!-- @hide We need to keep this around for backwards compatibility -->
1323 <permission android:name="android.permission.MANAGE_ACCOUNTS"
1324 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001325 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001326
1327 <!-- @hide We need to keep this around for backwards compatibility -->
1328 <permission android:name="android.permission.USE_CREDENTIALS"
1329 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001330 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001331
1332 <!-- @hide We need to keep this around for backwards compatibility -->
1333 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
1334 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001335 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001336
1337 <!-- @hide We need to keep this around for backwards compatibility -->
1338 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
1339 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001340 android:permissionFlags="removed"/>
Svet Ganovf1418ae2015-08-20 06:57:31 -07001341
Svetoslav Ganov1463ceb2016-01-04 12:15:16 -08001342 <!-- @hide We need to keep this around for backwards compatibility -->
1343 <permission android:name="android.permission.FLASHLIGHT"
1344 android:protectionLevel="normal"
Svet Ganov2a1376d2016-02-22 17:20:35 -08001345 android:permissionFlags="removed"/>
Svetoslav Ganov1463ceb2016-01-04 12:15:16 -08001346
Svetoslav Ganov6d2c0e52015-06-23 16:33:36 +00001347 <!-- ====================================================================== -->
1348 <!-- INSTALL PERMISSIONS -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001349 <!-- ====================================================================== -->
1350
1351 <!-- ================================== -->
1352 <!-- Permissions for accessing messages -->
1353 <!-- ================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001354 <eat-comment />
Dave Santoro0b61f592011-10-03 18:25:26 -07001355
Svetoslav61a4dd52015-04-09 10:17:40 -07001356 <!-- @SystemApi Allows an application (Phone) to send a request to other applications
1357 to handle the respond-via-message action during incoming calls.
1358 <p>Not for use by third-party applications. -->
1359 <permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001360 android:protectionLevel="signature|privileged" />
Dave Santoro0b61f592011-10-03 18:25:26 -07001361
Amit Mahajane5cd9fa2016-02-11 16:08:14 -08001362 <!-- @SystemApi Allows an application to send SMS to premium shortcodes without user permission.
Amit Mahajana8955592016-05-02 14:45:46 -07001363 <p>Not for use by third-party applications.
1364 @hide -->
Amit Mahajane5cd9fa2016-02-11 16:08:14 -08001365 <permission android:name="android.permission.SEND_SMS_NO_CONFIRMATION"
1366 android:protectionLevel="signature|privileged" />
1367
Svetoslav61a4dd52015-04-09 10:17:40 -07001368 <!-- Allows an application to filter carrier specific sms.
1369 @hide -->
1370 <permission android:name="android.permission.CARRIER_FILTER_SMS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001371 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001372
Svetoslav61a4dd52015-04-09 10:17:40 -07001373 <!-- @SystemApi Allows an application to receive emergency cell broadcast messages,
1374 to record or display them to the user.
Amit Mahajana8955592016-05-02 14:45:46 -07001375 <p>Not for use by third-party applications.
1376 @hide -->
Svetoslav61a4dd52015-04-09 10:17:40 -07001377 <permission android:name="android.permission.RECEIVE_EMERGENCY_BROADCAST"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001378 android:protectionLevel="signature|privileged" />
Svetoslav61a4dd52015-04-09 10:17:40 -07001379
1380 <!-- Allows an application to monitor incoming Bluetooth MAP messages, to record
1381 or perform processing on them. -->
1382 <!-- @hide -->
1383 <permission android:name="android.permission.RECEIVE_BLUETOOTH_MAP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001384 android:protectionLevel="signature|privileged" />
Svetoslav61a4dd52015-04-09 10:17:40 -07001385
1386 <!-- @SystemApi @hide Allows an application to execute contacts directory search.
1387 This should only be used by ContactsProvider.
1388 <p>Not for use by third-party applications. -->
1389 <permission android:name="android.permission.BIND_DIRECTORY_SEARCH"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001390 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391
Bryce Leef82631f2015-06-30 07:53:17 -07001392 <!-- @SystemApi @hide Allows an application to modify cell broadcasts through the content provider.
1393 <p>Not for use by third-party applications. -->
1394 <permission android:name="android.permission.MODIFY_CELL_BROADCASTS"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001395 android:protectionLevel="signature|privileged" />
Bryce Leef82631f2015-06-30 07:53:17 -07001396
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001397 <!-- =============================================================== -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001398 <!-- Permissions for setting the device alarm -->
1399 <!-- =============================================================== -->
1400 <eat-comment />
1401
Svetoslav71b6ca62015-06-25 18:19:14 -07001402 <!-- Allows an application to broadcast an Intent to set an alarm for the user.
1403 <p>Protection level: normal
1404 -->
Patrick Scotta73c4b02010-09-22 08:16:53 -04001405 <permission android:name="com.android.alarm.permission.SET_ALARM"
Patrick Scotta73c4b02010-09-22 08:16:53 -04001406 android:label="@string/permlab_setAlarm"
1407 android:description="@string/permdesc_setAlarm"
1408 android:protectionLevel="normal" />
1409
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001410 <!-- =============================================================== -->
1411 <!-- Permissions for accessing the user voicemail -->
1412 <!-- =============================================================== -->
1413 <eat-comment />
1414
Trevor Johns682c24e2016-04-12 10:13:47 -07001415 <!-- Allows an application to modify and remove existing voicemails in the system.
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001416 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07001417 -->
Yorke Leea19d7bf2014-07-18 16:24:29 -07001418 <permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001419 android:protectionLevel="signature|privileged" />
Yorke Lee5a2f4882014-06-23 17:05:30 -07001420
Svetoslav71b6ca62015-06-25 18:19:14 -07001421 <!-- Allows an application to read voicemails in the system.
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001422 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07001423 -->
Yorke Leea19d7bf2014-07-18 16:24:29 -07001424 <permission android:name="com.android.voicemail.permission.READ_VOICEMAIL"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001425 android:protectionLevel="signature|privileged" />
Svetoslav38228962013-01-29 01:04:35 -08001426
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001427 <!-- ======================================= -->
1428 <!-- Permissions for accessing location info -->
1429 <!-- ======================================= -->
1430 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001431
Trevor Johns682c24e2016-04-12 10:13:47 -07001432 <!-- Allows an application to access extra location provider commands.
Svetoslav71b6ca62015-06-25 18:19:14 -07001433 <p>Protection level: normal
1434 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001436 android:label="@string/permlab_accessLocationExtraCommands"
Svetoslav61a4dd52015-04-09 10:17:40 -07001437 android:description="@string/permdesc_accessLocationExtraCommands"
1438 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001440 <!-- @SystemApi Allows an application to install a location provider into the Location Manager.
Scott Main93e60b52013-06-10 11:05:55 -07001441 <p>Not for use by third-party applications. -->
Mike Lockwood275555c2009-05-01 11:30:34 -04001442 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001443 android:protectionLevel="signature|privileged" />
Mike Lockwood275555c2009-05-01 11:30:34 -04001444
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001445 <!-- @SystemApi @hide Allows HDMI-CEC service to access device and configuration files.
1446 This should only be used by HDMI-CEC service.
Jinsuk Kim4f512fb2014-02-28 17:41:17 +09001447 -->
1448 <permission android:name="android.permission.HDMI_CEC"
Nick Chalko9efce1e2018-05-10 12:13:12 -07001449 android:protectionLevel="signature|privileged|vendorPrivileged" />
Jinsuk Kim4f512fb2014-02-28 17:41:17 +09001450
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001451 <!-- @SystemApi Allows an application to use location features in hardware,
Scott Main93e60b52013-06-10 11:05:55 -07001452 such as the geofencing api.
1453 <p>Not for use by third-party applications. -->
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001454 <permission android:name="android.permission.LOCATION_HARDWARE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001455 android:protectionLevel="signature|privileged" />
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001456 <uses-permission android:name="android.permission.LOCATION_HARDWARE"/>
1457
Svetoslav71b6ca62015-06-25 18:19:14 -07001458 <!-- @SystemApi Allows an application to create mock location providers for testing.
1459 <p>Protection level: signature
1460 @hide
1461 -->
Svetoslav7f242252015-04-14 14:44:11 -07001462 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Svet Ganovf7e9cf42015-05-13 10:40:31 -07001463 android:protectionLevel="signature" />
Svetoslav7f242252015-04-14 14:44:11 -07001464
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001465 <!-- ======================================= -->
1466 <!-- Permissions for accessing networks -->
1467 <!-- ======================================= -->
1468 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001469
Svetoslav71b6ca62015-06-25 18:19:14 -07001470 <!-- Allows applications to open network sockets.
1471 <p>Protection level: normal
1472 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001473 <permission android:name="android.permission.INTERNET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 android:description="@string/permdesc_createNetworkSockets"
Svetoslav61a4dd52015-04-09 10:17:40 -07001475 android:label="@string/permlab_createNetworkSockets"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001476 android:protectionLevel="normal|instant" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477
Trevor Johns682c24e2016-04-12 10:13:47 -07001478 <!-- Allows applications to access information about networks.
Svetoslav71b6ca62015-06-25 18:19:14 -07001479 <p>Protection level: normal
1480 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001482 android:description="@string/permdesc_accessNetworkState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001483 android:label="@string/permlab_accessNetworkState"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001484 android:protectionLevel="normal|instant" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001485
Svetoslav71b6ca62015-06-25 18:19:14 -07001486 <!-- Allows applications to access information about Wi-Fi networks.
1487 <p>Protection level: normal
1488 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489 <permission android:name="android.permission.ACCESS_WIFI_STATE"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001490 android:description="@string/permdesc_accessWifiState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001491 android:label="@string/permlab_accessWifiState"
1492 android:protectionLevel="normal" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001493
Svetoslav71b6ca62015-06-25 18:19:14 -07001494 <!-- Allows applications to change Wi-Fi connectivity state.
1495 <p>Protection level: normal
1496 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001497 <permission android:name="android.permission.CHANGE_WIFI_STATE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001498 android:description="@string/permdesc_changeWifiState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001499 android:label="@string/permlab_changeWifiState"
Svet Ganov033a68f2015-06-11 20:04:04 -07001500 android:protectionLevel="normal" />
Adrian Ludwig361dfeb2012-06-01 19:57:57 -07001501
Nathan Harold15978842018-03-21 15:32:42 -07001502 <!-- @SystemApi @hide Allows apps to create and manage IPsec tunnels.
1503 <p>Only granted to applications that are currently bound by the
1504 system for creating and managing IPsec-based interfaces.
1505 -->
1506 <permission android:name="android.permission.MANAGE_IPSEC_TUNNELS"
1507 android:protectionLevel="signature|appop" />
1508
Wenchao Tongcdd58582014-06-18 12:59:21 -07001509 <!-- @SystemApi @hide Allows applications to read Wi-Fi credential.
1510 <p>Not for use by third-party applications. -->
1511 <permission android:name="android.permission.READ_WIFI_CREDENTIAL"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001512 android:protectionLevel="signature|privileged" />
Wenchao Tongcdd58582014-06-18 12:59:21 -07001513
Jeremy Kleind42209d2015-12-28 15:11:58 -08001514 <!-- @SystemApi @hide Allows applications to change tether state and run
1515 tether carrier provisioning.
1516 <p>Not for use by third-party applications. -->
1517 <permission android:name="android.permission.TETHER_PRIVILEGED"
1518 android:protectionLevel="signature|privileged" />
1519
Wenchao Tongcdd58582014-06-18 12:59:21 -07001520 <!-- @SystemApi @hide Allow system apps to receive broadcast
1521 when a wifi network credential is changed.
1522 <p>Not for use by third-party applications. -->
1523 <permission android:name="android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001524 android:protectionLevel="signature|privileged" />
Wenchao Tongcdd58582014-06-18 12:59:21 -07001525
Sky Faber3e3857c2014-09-22 13:54:18 -07001526 <!-- @SystemApi @hide Allows an application to modify any wifi configuration, even if created
Svetoslav61a4dd52015-04-09 10:17:40 -07001527 by another application. Once reconfigured the original creator cannot make any further
1528 modifications.
1529 <p>Not for use by third-party applications. -->
Sky Faber3e3857c2014-09-22 13:54:18 -07001530 <permission android:name="android.permission.OVERRIDE_WIFI_CONFIG"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001531 android:protectionLevel="signature|privileged" />
Sky Faber3e3857c2014-09-22 13:54:18 -07001532
Robert Greenwalt8588e472011-11-08 10:12:25 -08001533 <!-- @hide -->
tk.mun148c7d02011-10-13 22:51:57 +09001534 <permission android:name="android.permission.ACCESS_WIMAX_STATE"
tk.mun148c7d02011-10-13 22:51:57 +09001535 android:description="@string/permdesc_accessWimaxState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001536 android:label="@string/permlab_accessWimaxState"
1537 android:protectionLevel="normal" />
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07001538
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001539 <!-- @hide -->
1540 <permission android:name="android.permission.CHANGE_WIMAX_STATE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001541 android:description="@string/permdesc_changeWimaxState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001542 android:label="@string/permlab_changeWimaxState"
Svet Ganov033a68f2015-06-11 20:04:04 -07001543 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001544
Fyodor Kupolov136a2e7f2015-07-27 12:20:18 -07001545 <!-- Allows applications to act as network scorers. @hide @SystemApi-->
Jeff Davidsonb51e0a62014-04-09 12:38:15 -07001546 <permission android:name="android.permission.SCORE_NETWORKS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001547 android:protectionLevel="signature|privileged" />
Jeff Davidsonb51e0a62014-04-09 12:38:15 -07001548
Jeremy Joslina9ad1d32017-01-18 16:16:39 -08001549 <!-- Allows applications to request network
Jeremy Joslin7231d442016-12-21 14:16:19 -08001550 recommendations and scores from the NetworkScoreService.
1551 <p>Not for use by third-party applications. @hide -->
1552 <permission android:name="android.permission.REQUEST_NETWORK_SCORES"
Sundeep Ghuman3d12a052017-01-20 10:32:18 -08001553 android:protectionLevel="signature|setup" />
Jeremy Joslin7231d442016-12-21 14:16:19 -08001554
Rebecca Silbersteinea55ae72017-03-23 00:29:28 -07001555 <!-- Allows network stack services (Connectivity and Wifi) to coordinate
1556 <p>Not for use by third-party or privileged applications.
1557 @hide This should only be used by Connectivity and Wifi Services.
1558 -->
1559 <permission android:name="android.permission.NETWORK_STACK"
1560 android:protectionLevel="signature" />
1561
Rebecca Silbersteine694fa72017-05-09 23:05:09 -07001562 <!-- Allows Settings and SystemUI to call methods in Networking services
1563 <p>Not for use by third-party or privileged applications.
1564 @hide This should only be used by Settings and SystemUI.
1565 -->
1566 <permission android:name="android.permission.NETWORK_SETTINGS"
1567 android:protectionLevel="signature" />
1568
Roshan Piusb65a1cf2018-04-24 10:09:46 -07001569 <!-- Allows SetupWizard to call methods in Networking services
1570 <p>Not for use by any other third-party or privileged applications.
Lorenzo Colitti85eca482018-10-09 18:50:32 +09001571 @SystemApi
Roshan Piusb65a1cf2018-04-24 10:09:46 -07001572 @hide This should only be used by SetupWizard.
1573 -->
1574 <permission android:name="android.permission.NETWORK_SETUP_WIZARD"
1575 android:protectionLevel="signature|setup" />
1576
Robert Quattlebaum4e0c2192017-02-08 12:13:19 -08001577 <!-- #SystemApi @hide Allows applications to access information about LoWPAN interfaces.
1578 <p>Not for use by third-party applications. -->
1579 <permission android:name="android.permission.ACCESS_LOWPAN_STATE"
1580 android:protectionLevel="signature|privileged" />
1581
1582 <!-- #SystemApi @hide Allows applications to change LoWPAN connectivity state.
1583 <p>Not for use by third-party applications. -->
1584 <permission android:name="android.permission.CHANGE_LOWPAN_STATE"
1585 android:protectionLevel="signature|privileged" />
1586
1587 <!-- #SystemApi @hide Allows applications to read LoWPAN credential.
1588 <p>Not for use by third-party applications. -->
1589 <permission android:name="android.permission.READ_LOWPAN_CREDENTIAL"
1590 android:protectionLevel="signature|privileged" />
1591
1592 <!-- #SystemApi @hide Allows a service to register or unregister
1593 new LoWPAN interfaces.
1594 <p>Not for use by third-party applications. -->
1595 <permission android:name="android.permission.MANAGE_LOWPAN_INTERFACES"
1596 android:protectionLevel="signature|privileged" />
1597
baishengf62d8692018-01-25 18:07:24 +08001598 <!-- @hide Allows internal management of Wi-Fi connectivity state when on
Philip P. Moltmann6c644e62018-07-18 15:41:24 -07001599 wireless consent mode.
baishengf62d8692018-01-25 18:07:24 +08001600 <p>Not for use by third-party applications. -->
Philip P. Moltmann6c644e62018-07-18 15:41:24 -07001601 <permission android:name="android.permission.MANAGE_WIFI_WHEN_WIRELESS_CONSENT_REQUIRED"
baishengf62d8692018-01-25 18:07:24 +08001602 android:protectionLevel="signature" />
1603
Remi NGUYEN VAN62594fd2018-04-25 17:46:10 +09001604 <!-- #SystemApi @hide Allows an app to bypass Private DNS.
1605 <p>Not for use by third-party applications.
1606 TODO: publish as system API in next API release. -->
1607 <permission android:name="android.permission.NETWORK_BYPASS_PRIVATE_DNS"
1608 android:protectionLevel="signature" />
1609
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001610 <!-- ======================================= -->
1611 <!-- Permissions for short range, peripheral networks -->
1612 <!-- ======================================= -->
1613 <eat-comment />
1614
Svetoslav71b6ca62015-06-25 18:19:14 -07001615 <!-- Allows applications to connect to paired bluetooth devices.
1616 <p>Protection level: normal
1617 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001618 <permission android:name="android.permission.BLUETOOTH"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 android:description="@string/permdesc_bluetooth"
Svetoslav61a4dd52015-04-09 10:17:40 -07001620 android:label="@string/permlab_bluetooth"
Svet Ganovd81897d2015-06-11 18:24:26 -07001621 android:protectionLevel="normal" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001622
Suprabh Shukla021b57a2018-03-08 18:21:50 -08001623 <!-- @SystemApi Allows an application to suspend other apps, which will prevent the user
1624 from using them until they are unsuspended.
1625 @hide
1626 -->
1627 <permission android:name="android.permission.SUSPEND_APPS"
1628 android:protectionLevel="signature|privileged" />
1629
Svetoslav71b6ca62015-06-25 18:19:14 -07001630 <!-- Allows applications to discover and pair bluetooth devices.
1631 <p>Protection level: normal
1632 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001633 <permission android:name="android.permission.BLUETOOTH_ADMIN"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001634 android:description="@string/permdesc_bluetoothAdmin"
Svetoslav61a4dd52015-04-09 10:17:40 -07001635 android:label="@string/permlab_bluetoothAdmin"
Svet Ganovd81897d2015-06-11 18:24:26 -07001636 android:protectionLevel="normal" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001637
Edward Jee8dd30aa2014-09-05 00:29:14 -07001638 <!-- @SystemApi Allows applications to pair bluetooth devices without user interaction, and to
1639 allow or disallow phonebook access or message access.
Dianne Hackbornebc15ef2013-10-09 17:36:57 -07001640 This is not available to third party applications. -->
Matthew Xie091fc2b2013-09-23 23:23:13 -07001641 <permission android:name="android.permission.BLUETOOTH_PRIVILEGED"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001642 android:protectionLevel="signature|privileged" />
Matthew Xie091fc2b2013-09-23 23:23:13 -07001643
Matthew Xie6b932292014-07-24 14:54:04 +02001644 <!-- Control access to email providers exclusively for Bluetooth
1645 @hide
1646 -->
1647 <permission android:name="android.permission.BLUETOOTH_MAP"
Svetoslav61a4dd52015-04-09 10:17:40 -07001648 android:protectionLevel="signature" />
Matthew Xie6b932292014-07-24 14:54:04 +02001649
Matthew Xiefca9d632012-10-04 12:25:28 -07001650 <!-- Allows bluetooth stack to access files
1651 @hide This should only be used by Bluetooth apk.
1652 -->
1653 <permission android:name="android.permission.BLUETOOTH_STACK"
Matthew Xiefca9d632012-10-04 12:25:28 -07001654 android:protectionLevel="signature" />
1655
Svetoslav71b6ca62015-06-25 18:19:14 -07001656 <!-- Allows applications to perform I/O operations over NFC.
1657 <p>Protection level: normal
1658 -->
Nick Pellye47150e2010-10-17 19:05:47 -07001659 <permission android:name="android.permission.NFC"
Nick Pellye47150e2010-10-17 19:05:47 -07001660 android:description="@string/permdesc_nfc"
Svetoslav61a4dd52015-04-09 10:17:40 -07001661 android:label="@string/permlab_nfc"
Svet Ganovb4673302015-05-12 20:50:14 -07001662 android:protectionLevel="normal" />
Nick Pelly038cabe2010-09-23 16:12:11 -07001663
Ruchi Kandoi62c46ea2018-01-03 12:20:46 -08001664 <!-- Allows applications to receive NFC transaction events.
1665 <p>Protection level: normal
1666 -->
1667 <permission android:name="android.permission.NFC_TRANSACTION_EVENT"
1668 android:protectionLevel="normal" />
1669
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001670 <!-- @SystemApi Allows an internal user to use privileged ConnectivityManager APIs.
Jason Long193f0492014-06-09 20:02:15 -07001671 @hide -->
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001672 <permission android:name="android.permission.CONNECTIVITY_INTERNAL"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001673 android:protectionLevel="signature|privileged" />
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001674
Lorenzo Colitti87b59632017-03-22 11:19:26 +09001675 <!-- @SystemApi Allows an internal user to use restricted Networks.
Hugo Benichi514da602016-07-19 15:59:27 +09001676 @hide -->
1677 <permission android:name="android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS"
1678 android:protectionLevel="signature|privileged" />
1679
Lorenzo Colitti7b700362015-09-08 13:23:00 +09001680 <!-- Allows a system application to access hardware packet offload capabilities.
1681 @hide -->
1682 <permission android:name="android.permission.PACKET_KEEPALIVE_OFFLOAD"
1683 android:protectionLevel="signature|privileged" />
1684
Svetoslav61a4dd52015-04-09 10:17:40 -07001685 <!-- @SystemApi
1686 @hide -->
Haoyu Baidb3c8672012-06-20 14:29:57 -07001687 <permission android:name="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001688 android:protectionLevel="signature|privileged" />
Haoyu Baidb3c8672012-06-20 14:29:57 -07001689
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001690 <!-- @SystemApi Allows access to the loop radio (Android@Home mesh network) device.
Jason Long193f0492014-06-09 20:02:15 -07001691 @hide -->
Doug Zongkerb616f0c2013-01-29 09:05:21 -08001692 <permission android:name="android.permission.LOOP_RADIO"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001693 android:protectionLevel="signature|privileged" />
Russell Brenner108da0c2013-02-12 10:03:14 -08001694
Andres Morales9740e462014-02-07 16:57:00 -08001695 <!-- Allows sending and receiving handover transfer status from Wifi and Bluetooth
Svetoslav61a4dd52015-04-09 10:17:40 -07001696 @hide -->
Andres Morales9740e462014-02-07 16:57:00 -08001697 <permission android:name="android.permission.NFC_HANDOVER_STATUS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001698 android:protectionLevel="signature|privileged" />
Andres Morales9740e462014-02-07 16:57:00 -08001699
Philip P. Moltmann6c644e62018-07-18 15:41:24 -07001700 <!-- @hide Allows internal management of Bluetooth state when on wireless consent mode.
baishengf62d8692018-01-25 18:07:24 +08001701 <p>Not for use by third-party applications. -->
Philip P. Moltmann6c644e62018-07-18 15:41:24 -07001702 <permission android:name="android.permission.MANAGE_BLUETOOTH_WHEN_WIRELESS_CONSENT_REQUIRED"
baishengf62d8692018-01-25 18:07:24 +08001703 android:protectionLevel="signature" />
1704
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001705 <!-- ================================== -->
1706 <!-- Permissions for accessing accounts -->
1707 <!-- ================================== -->
1708 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001709
Svetoslav71b6ca62015-06-25 18:19:14 -07001710 <!-- Allows access to the list of accounts in the Accounts Service.
Trevor Johns682c24e2016-04-12 10:13:47 -07001711
1712 <p class="note"><strong>Note:</strong> Beginning with Android 6.0 (API level
1713 23), if an app shares the signature of the authenticator that manages an
1714 account, it does not need <code>"GET_ACCOUNTS"</code> permission to read
1715 information about that account. On Android 5.1 and lower, all apps need
1716 <code>"GET_ACCOUNTS"</code> permission to read information about any
1717 account.</p>
1718
1719 <p>Protection level: dangerous
Svetoslav71b6ca62015-06-25 18:19:14 -07001720 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001721 <permission android:name="android.permission.GET_ACCOUNTS"
Carlos Valdivia6eb73a52015-06-11 13:07:11 -07001722 android:permissionGroup="android.permission-group.CONTACTS"
Svetoslav Ganov2c202772015-07-17 17:35:05 +00001723 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001724 android:description="@string/permdesc_getAccounts"
1725 android:label="@string/permlab_getAccounts" />
Svetoslav Ganov5cb29732016-07-11 19:32:30 -07001726 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001728 <!-- @SystemApi Allows applications to call into AccountAuthenticators.
Scott Main93e60b52013-06-10 11:05:55 -07001729 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001730 <permission android:name="android.permission.ACCOUNT_MANAGER"
Svetoslav61a4dd52015-04-09 10:17:40 -07001731 android:protectionLevel="signature" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001732
1733 <!-- ================================== -->
1734 <!-- Permissions for accessing hardware that may effect battery life-->
1735 <!-- ================================== -->
1736 <eat-comment />
1737
Svetoslav71b6ca62015-06-25 18:19:14 -07001738 <!-- Allows applications to enter Wi-Fi Multicast mode.
1739 <p>Protection level: normal
1740 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001741 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001742 android:description="@string/permdesc_changeWifiMulticastState"
Svetoslav61a4dd52015-04-09 10:17:40 -07001743 android:label="@string/permlab_changeWifiMulticastState"
Svet Ganov033a68f2015-06-11 20:04:04 -07001744 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001745
Svetoslav71b6ca62015-06-25 18:19:14 -07001746 <!-- Allows access to the vibrator.
1747 <p>Protection level: normal
1748 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001749 <permission android:name="android.permission.VIBRATE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001750 android:label="@string/permlab_vibrate"
Svetoslav61a4dd52015-04-09 10:17:40 -07001751 android:description="@string/permdesc_vibrate"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001752 android:protectionLevel="normal|instant" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001753
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001754 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
Svetoslav71b6ca62015-06-25 18:19:14 -07001755 from dimming.
1756 <p>Protection level: normal
1757 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001758 <permission android:name="android.permission.WAKE_LOCK"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001759 android:label="@string/permlab_wakeLock"
Svetoslav61a4dd52015-04-09 10:17:40 -07001760 android:description="@string/permdesc_wakeLock"
Todd Kennedyc247fa12017-06-02 10:29:22 -07001761 android:protectionLevel="normal|instant" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001762
Svetoslav71b6ca62015-06-25 18:19:14 -07001763 <!-- Allows using the device's IR transmitter, if available.
1764 <p>Protection level: normal
1765 -->
Erik Gilling51e95df2013-06-26 11:06:51 -07001766 <permission android:name="android.permission.TRANSMIT_IR"
Erik Gilling51e95df2013-06-26 11:06:51 -07001767 android:label="@string/permlab_transmitIr"
Svetoslav61a4dd52015-04-09 10:17:40 -07001768 android:description="@string/permdesc_transmitIr"
1769 android:protectionLevel="normal" />
Erik Gilling51e95df2013-06-26 11:06:51 -07001770
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001771 <!-- ==================================================== -->
1772 <!-- Permissions related to changing audio settings -->
1773 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -07001774 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001775
Svetoslav71b6ca62015-06-25 18:19:14 -07001776 <!-- Allows an application to modify global audio settings.
1777 <p>Protection level: normal
1778 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001779 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001780 android:label="@string/permlab_modifyAudioSettings"
Svetoslav61a4dd52015-04-09 10:17:40 -07001781 android:description="@string/permdesc_modifyAudioSettings"
1782 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001783
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001784 <!-- ================================== -->
1785 <!-- Permissions for accessing hardware -->
1786 <!-- ================================== -->
1787 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001788
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001789 <!-- @SystemApi Allows an application to manage preferences and permissions for USB devices
Mike Lockwood02eb8742011-02-27 09:10:37 -08001790 @hide -->
1791 <permission android:name="android.permission.MANAGE_USB"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001792 android:protectionLevel="signature|privileged" />
Mike Lockwood31ac8e92010-05-10 18:26:40 -04001793
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001794 <!-- @SystemApi Allows an application to access the MTP USB kernel driver.
Mike Lockwood10bc1112011-01-10 08:24:08 -05001795 For use only by the device side MTP implementation.
1796 @hide -->
1797 <permission android:name="android.permission.ACCESS_MTP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001798 android:protectionLevel="signature|privileged" />
Mike Lockwood10bc1112011-01-10 08:24:08 -05001799
Svetoslav71b6ca62015-06-25 18:19:14 -07001800 <!-- @SystemApi Allows access to hardware peripherals. Intended only for hardware testing.
1801 <p>Not for use by third-party applications.
1802 @hide
1803 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001804 <permission android:name="android.permission.HARDWARE_TEST"
Svetoslav61a4dd52015-04-09 10:17:40 -07001805 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001806
Tomasz Wasilczykdf776432017-07-21 14:07:09 -07001807 <!-- @SystemApi Allows access to Broadcast Radio
1808 @hide This is not a third-party API (intended for system apps).-->
1809 <permission android:name="android.permission.ACCESS_BROADCAST_RADIO"
1810 android:protectionLevel="signature|privileged" />
1811
1812 <!-- @deprecated @SystemApi Allows access to FM
Benson Huang981258e2014-09-23 10:57:40 +08001813 @hide This is not a third-party API (intended for system apps).-->
1814 <permission android:name="android.permission.ACCESS_FM_RADIO"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001815 android:protectionLevel="signature|privileged" />
Benson Huang981258e2014-09-23 10:57:40 +08001816
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -05001817 <!-- Allows access to configure network interfaces, configure/use IPSec, etc.
1818 @hide -->
1819 <permission android:name="android.permission.NET_ADMIN"
Ramesh Sudini0e7b5a02011-03-28 09:18:31 -05001820 android:protectionLevel="signature" />
1821
Jeff Sharkey098d5802012-04-26 17:30:34 -07001822 <!-- Allows registration for remote audio playback. @hide -->
1823 <permission android:name="android.permission.REMOTE_AUDIO_PLAYBACK"
Jeff Sharkey098d5802012-04-26 17:30:34 -07001824 android:protectionLevel="signature" />
1825
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001826 <!-- @SystemApi Allows TvInputService to access underlying TV input hardware such as
Wonsik Kimc22dbb62014-05-26 02:26:04 +00001827 built-in tuners and HDMI-in's.
1828 @hide This should only be used by OEM's TvInputService's.
1829 -->
1830 <permission android:name="android.permission.TV_INPUT_HARDWARE"
Nick Chalko604afcb2018-05-10 13:17:47 -07001831 android:protectionLevel="signature|privileged|vendorPrivileged" />
Wonsik Kimc22dbb62014-05-26 02:26:04 +00001832
Terry Heoc086a3d2014-06-18 14:26:44 +09001833 <!-- @SystemApi Allows to capture a frame of TV input hardware such as
1834 built-in tuners and HDMI-in's.
1835 @hide <p>Not for use by third-party applications.
1836 -->
1837 <permission android:name="android.permission.CAPTURE_TV_INPUT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001838 android:protectionLevel="signature|privileged" />
Terry Heoc086a3d2014-06-18 14:26:44 +09001839
Jaesung Chung58739e72015-04-24 19:39:59 +09001840 <!-- @hide Allows TvInputService to access DVB device.
1841 <p>Not for use by third-party applications. -->
1842 <permission android:name="android.permission.DVB_DEVICE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001843 android:protectionLevel="signature|privileged" />
Jaesung Chung58739e72015-04-24 19:39:59 +09001844
Andrew Scull3b8b46f2017-02-13 18:12:15 +00001845 <!-- @SystemApi Allows reading and enabling/disabling the OEM unlock allowed by carrier state
1846 @hide <p>Not for use by third-party applications. -->
1847 <permission android:name="android.permission.MANAGE_CARRIER_OEM_UNLOCK_STATE"
1848 android:protectionLevel="signature|privileged" />
1849
1850 <!-- @SystemApi Allows reading and enabling/disabling the OEM unlock allowed by user state
1851 @hide <p>Not for use by third-party applications. -->
1852 <permission android:name="android.permission.MANAGE_USER_OEM_UNLOCK_STATE"
1853 android:protectionLevel="signature|privileged" />
1854
Amith Yamasanid2b21042016-06-03 10:12:47 -07001855 <!-- @SystemApi Allows reading the OEM unlock state
1856 @hide <p>Not for use by third-party applications. -->
1857 <permission android:name="android.permission.READ_OEM_UNLOCK_STATE"
1858 android:protectionLevel="signature|privileged" />
1859
Andres Morales68d4acd2014-07-01 19:40:41 -07001860 <!-- @hide Allows enabling/disabling OEM unlock
1861 <p>Not for use by third-party applications. -->
1862 <permission android:name="android.permission.OEM_UNLOCK_STATE"
Svetoslav61a4dd52015-04-09 10:17:40 -07001863 android:protectionLevel="signature" />
Andres Morales68d4acd2014-07-01 19:40:41 -07001864
Andres Morales6b0c7ac2014-11-24 14:14:54 -08001865 <!-- @hide Allows querying state of PersistentDataBlock
1866 <p>Not for use by third-party applications. -->
1867 <permission android:name="android.permission.ACCESS_PDB_STATE"
Svetoslav61a4dd52015-04-09 10:17:40 -07001868 android:protectionLevel="signature" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001869
Alexandru-Andrei Rotaru7f31bb02017-09-07 16:29:48 +01001870 <!-- Allows testing if a passwords is forbidden by the admins.
1871 @hide <p>Not for use by third-party applications. -->
1872 <permission android:name="android.permission.TEST_BLACKLISTED_PASSWORD"
1873 android:protectionLevel="signature" />
1874
Rubin Xudc105cc2015-04-14 23:38:01 +01001875 <!-- @hide Allows system update service to notify device owner about pending updates.
1876 <p>Not for use by third-party applications. -->
1877 <permission android:name="android.permission.NOTIFY_PENDING_SYSTEM_UPDATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001878 android:protectionLevel="signature|privileged" />
Rubin Xudc105cc2015-04-14 23:38:01 +01001879
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001880 <!-- =========================================== -->
1881 <!-- Permissions associated with camera and image capture -->
1882 <!-- =========================================== -->
1883 <eat-comment />
1884
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001885 <!-- @SystemApi Allows disabling the transmit-indicator LED that is normally on when
Igor Murashkinf640bb9b2013-04-23 14:32:19 -07001886 a camera is in use by an application.
1887 @hide -->
1888 <permission android:name="android.permission.CAMERA_DISABLE_TRANSMIT_LED"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001889 android:protectionLevel="signature|privileged" />
Igor Murashkinf640bb9b2013-04-23 14:32:19 -07001890
Ruben Brunk9d21ee52015-03-20 22:18:55 -07001891 <!-- Allows sending the camera service notifications about system-wide events.
1892 @hide -->
1893 <permission android:name="android.permission.CAMERA_SEND_SYSTEM_EVENTS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001894 android:protectionLevel="signature|privileged" />
Ruben Brunk9d21ee52015-03-20 22:18:55 -07001895
Dianne Hackborncd403fc2012-09-13 00:24:38 -07001896 <!-- =========================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001897 <!-- Permissions associated with telephony state -->
1898 <!-- =========================================== -->
1899 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07001900
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001901 <!-- @SystemApi Allows modification of the telephony state - power on, mmi, etc.
Scott Main93e60b52013-06-10 11:05:55 -07001902 Does not include placing calls.
1903 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 <permission android:name="android.permission.MODIFY_PHONE_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001905 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001906
Antonio Marín Cerezuelac5ac15a2013-05-27 11:36:36 +02001907 <!-- Allows read only access to precise phone state.
1908 @hide Pending API council approval -->
1909 <permission android:name="android.permission.READ_PRECISE_PHONE_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001910 android:protectionLevel="signature|privileged" />
Antonio Marín Cerezuelac5ac15a2013-05-27 11:36:36 +02001911
Jeff Brownb61eaaa2014-06-06 19:46:26 -07001912 <!-- @SystemApi Allows read access to privileged phone state.
Jake Hamby463f2212011-07-21 17:55:53 -07001913 @hide Used internally. -->
1914 <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07001915 android:protectionLevel="signature|privileged" />
Jake Hamby463f2212011-07-21 17:55:53 -07001916
Evan Charlton0e094d92014-11-08 15:49:16 -08001917 <!-- @SystemApi Protects the ability to register any PhoneAccount with
Santos Cordon2ef87ee2014-10-31 12:39:44 -07001918 PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. This capability indicates that the PhoneAccount
Evan Charlton0e094d92014-11-08 15:49:16 -08001919 corresponds to a device SIM.
1920 @hide -->
Santos Cordon2ef87ee2014-10-31 12:39:44 -07001921 <permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001922 android:protectionLevel="signature|privileged" />
Evan Charltoncef5a542014-10-24 15:09:00 -07001923
Evan Charlton0e094d92014-11-08 15:49:16 -08001924 <!-- @SystemApi Protects the ability to register any PhoneAccount with
1925 PhoneAccount#CAPABILITY_CALL_PROVIDER.
1926 @hide -->
Santos Cordon2ef87ee2014-10-31 12:39:44 -07001927 <permission android:name="android.permission.REGISTER_CALL_PROVIDER"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001928 android:protectionLevel="signature|privileged" />
Santos Cordon2ef87ee2014-10-31 12:39:44 -07001929
Evan Charlton0e094d92014-11-08 15:49:16 -08001930 <!-- @SystemApi Protects the ability to register any PhoneAccount with
1931 PhoneAccount#CAPABILITY_CONNECTION_MANAGER
1932 @hide -->
Evan Charltoncef5a542014-10-24 15:09:00 -07001933 <permission android:name="android.permission.REGISTER_CONNECTION_MANAGER"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001934 android:protectionLevel="signature|privileged" />
Evan Charltoncef5a542014-10-24 15:09:00 -07001935
Yorke Leee9d766a2015-04-28 16:08:25 -07001936 <!-- Must be required by a {@link android.telecom.InCallService},
Svetoslav71b6ca62015-06-25 18:19:14 -07001937 to ensure that only the system can bind to it.
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001938 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07001939 -->
Tyler Gunn2ac40102014-08-18 16:23:10 -07001940 <permission android:name="android.permission.BIND_INCALL_SERVICE"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001941 android:protectionLevel="signature|privileged" />
Santos Cordon79836382013-08-13 14:29:47 -07001942
Ta-wei Yen485d6de2016-12-16 12:17:30 -08001943 <!-- Must be required by a link {@link android.telephony.VisualVoicemailService} to ensure that
1944 only the system can bind to it.
1945 <p>Protection level: signature|privileged
1946 -->
1947 <permission
1948 android:name="android.permission.BIND_VISUAL_VOICEMAIL_SERVICE"
1949 android:protectionLevel="signature|privileged"/>
1950
Sailesh Nepal1bef3392016-01-24 18:21:53 -08001951 <!-- Must be required by a {@link android.telecom.CallScreeningService},
1952 to ensure that only the system can bind to it.
1953 <p>Protection level: signature|privileged
1954 -->
1955 <permission android:name="android.permission.BIND_SCREENING_SERVICE"
1956 android:protectionLevel="signature|privileged" />
1957
sqian49c39fe2018-07-26 11:35:58 -07001958 <!-- Must be required by a {@link android.telecom.CallRedirectionService},
1959 to ensure that only the system can bind to it.
1960 <p>Protection level: signature|privileged
1961 -->
1962 <permission android:name="android.permission.BIND_CALL_REDIRECTION_SERVICE"
1963 android:protectionLevel="signature|privileged" />
1964
Yorke Leee9d766a2015-04-28 16:08:25 -07001965 <!-- Must be required by a {@link android.telecom.ConnectionService},
Yorke Lee249c12e2015-05-13 15:59:29 -07001966 to ensure that only the system can bind to it.
1967 @deprecated {@link android.telecom.ConnectionService}s should require
1968 android.permission.BIND_TELECOM_CONNECTION_SERVICE instead.
1969 @SystemApi
1970 @hide -->
Tyler Gunn0dae9a42014-08-15 15:55:20 -07001971 <permission android:name="android.permission.BIND_CONNECTION_SERVICE"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001972 android:protectionLevel="signature|privileged" />
Tyler Gunn0dae9a42014-08-15 15:55:20 -07001973
Yorke Lee249c12e2015-05-13 15:59:29 -07001974 <!-- Must be required by a {@link android.telecom.ConnectionService},
Svetoslav71b6ca62015-06-25 18:19:14 -07001975 to ensure that only the system can bind to it.
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001976 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07001977 -->
Yorke Lee249c12e2015-05-13 15:59:29 -07001978 <permission android:name="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001979 android:protectionLevel="signature|privileged" />
Yorke Lee249c12e2015-05-13 15:59:29 -07001980
Tyler Gunn2ac40102014-08-18 16:23:10 -07001981 <!-- @SystemApi Allows an application to control the in-call experience.
1982 @hide -->
1983 <permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001984 android:protectionLevel="signature|privileged" />
Tyler Gunn2ac40102014-08-18 16:23:10 -07001985
Amit Mahajan59acd142015-06-10 17:02:39 -07001986 <!-- Allows an application to receive STK related commands.
1987 @hide -->
1988 <permission android:name="android.permission.RECEIVE_STK_COMMANDS"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03001989 android:protectionLevel="signature|privileged" />
Amit Mahajan59acd142015-06-10 17:02:39 -07001990
Hall Liu14f52d92017-08-09 16:16:44 -07001991 <!-- Allows an application to send EMBMS download intents to apps
1992 @hide -->
Hall Liu55f557d2017-06-29 18:37:11 -07001993 <permission android:name="android.permission.SEND_EMBMS_INTENTS"
1994 android:protectionLevel="signature|privileged" />
1995
Svet Ganov8bd13952018-01-15 21:32:00 -08001996
1997 <!-- Allows internal management of the sensor framework
1998 @hide -->
1999 <permission android:name="android.permission.MANAGE_SENSORS"
2000 android:protectionLevel="signature" />
2001
Brad Ebinger024aaf22017-01-23 15:17:50 -08002002 <!-- Must be required by an ImsService to ensure that only the
2003 system can bind to it.
Jack Yu30295ad2018-01-31 16:40:33 -08002004 <p>Protection level: signature|privileged|vendorPrivileged
Brad Ebinger024aaf22017-01-23 15:17:50 -08002005 @SystemApi
2006 @hide
2007 -->
2008 <permission android:name="android.permission.BIND_IMS_SERVICE"
Jiyong Parkef262862017-11-20 22:58:34 +09002009 android:protectionLevel="signature|privileged|vendorPrivileged" />
Brad Ebinger024aaf22017-01-23 15:17:50 -08002010
Jack Yu568b81a2018-02-02 10:40:11 -08002011 <!-- Must be required by a telephony data service to ensure that only the
Jack Yu30295ad2018-01-31 16:40:33 -08002012 system can bind to it.
Jack Yu568b81a2018-02-02 10:40:11 -08002013 <p>Protection level: signature
Jack Yu30295ad2018-01-31 16:40:33 -08002014 @SystemApi
2015 @hide
2016 -->
Jack Yu568b81a2018-02-02 10:40:11 -08002017 <permission android:name="android.permission.BIND_TELEPHONY_DATA_SERVICE"
2018 android:protectionLevel="signature" />
Jack Yu30295ad2018-01-31 16:40:33 -08002019
Malcolm Chenec102212018-01-29 15:10:46 -08002020 <!-- Must be required by a NetworkService to ensure that only the
2021 system can bind to it.
2022 <p>Protection level: signature
2023 @SystemApi
2024 @hide
2025 -->
2026 <permission android:name="android.permission.BIND_TELEPHONY_NETWORK_SERVICE"
2027 android:protectionLevel="signature" />
2028
Holly Jiuyu Sun4f73b9c2017-12-12 20:17:09 -08002029 <!-- @SystemApi Allows an application to manage embedded subscriptions (those on a eUICC)
2030 through EuiccManager APIs.
Jeff Davidson35cda392017-02-27 09:46:00 -08002031 <p>Protection level: signature|privileged|development
Holly Jiuyu Sun4f73b9c2017-12-12 20:17:09 -08002032 @hide
2033 -->
2034 <permission android:name="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
Jeff Davidson35cda392017-02-27 09:46:00 -08002035 android:protectionLevel="signature|privileged|development" />
2036
Holly Jiuyu Sun4f73b9c2017-12-12 20:17:09 -08002037 <!-- @SystemApi Must be required by an EuiccService to ensure that only the system can bind to
2038 it.
Jeff Davidson35cda392017-02-27 09:46:00 -08002039 <p>Protection level: signature
Holly Jiuyu Sun4f73b9c2017-12-12 20:17:09 -08002040 @hide
2041 -->
2042 <permission android:name="android.permission.BIND_EUICC_SERVICE"
Jeff Davidson35cda392017-02-27 09:46:00 -08002043 android:protectionLevel="signature" />
2044
San Mehat29b57e62009-04-23 09:18:32 -07002045 <!-- ================================== -->
2046 <!-- Permissions for sdcard interaction -->
2047 <!-- ================================== -->
2048 <eat-comment />
2049
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002050 <!-- @SystemApi Allows an application to write to internal media storage
Mike Lockwood1e23db42011-04-22 07:05:21 -07002051 @hide -->
2052 <permission android:name="android.permission.WRITE_MEDIA_STORAGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002053 android:protectionLevel="signature|privileged" />
Mike Lockwood1e23db42011-04-22 07:05:21 -07002054
Jeff Sharkey9ecfee02013-04-19 14:05:03 -07002055 <!-- Allows an application to manage access to documents, usually as part
Svetoslav71b6ca62015-06-25 18:19:14 -07002056 of a document picker.
Jeff Sharkey87314082016-03-11 17:25:11 -07002057 <p>This permission should <em>only</em> be requested by the platform
2058 document management app. This permission cannot be granted to
2059 third-party apps.
Svetoslav71b6ca62015-06-25 18:19:14 -07002060 <p>Protection level: signature
2061 -->
Jeff Sharkey9ecfee02013-04-19 14:05:03 -07002062 <permission android:name="android.permission.MANAGE_DOCUMENTS"
Jeff Sharkey89f545a2014-02-18 14:25:47 -08002063 android:protectionLevel="signature" />
Jeff Sharkey9ecfee02013-04-19 14:05:03 -07002064
Jeff Sharkey87314082016-03-11 17:25:11 -07002065 <!-- @hide Allows an application to cache content.
2066 <p>Not for use by third-party applications.
2067 <p>Protection level: signature
2068 -->
2069 <permission android:name="android.permission.CACHE_CONTENT"
2070 android:protectionLevel="signature" />
2071
Jeff Sharkeya4d34d92017-04-27 11:21:41 -06002072 <!-- @SystemApi @hide
2073 Allows an application to aggressively allocate disk space.
Jeff Sharkey500ce9e2017-02-12 02:39:24 -07002074 <p>Not for use by third-party applications.
2075 -->
2076 <permission android:name="android.permission.ALLOCATE_AGGRESSIVE"
2077 android:protectionLevel="signature|privileged" />
2078
Jeff Sharkey4a539442018-01-05 17:09:52 -07002079 <!-- @SystemApi @hide
2080 Allows an application to use reserved disk space.
2081 <p>Not for use by third-party applications. Should only be requested by
2082 apps that provide core system functionality, to ensure system stability
2083 when disk is otherwise completely full.
2084 -->
2085 <permission android:name="android.permission.USE_RESERVED_DISK"
2086 android:protectionLevel="signature|privileged" />
2087
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002088 <!-- ================================== -->
2089 <!-- Permissions for screenlock -->
2090 <!-- ================================== -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002091 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07002092
Svetoslav71b6ca62015-06-25 18:19:14 -07002093 <!-- Allows applications to disable the keyguard if it is not secure.
2094 <p>Protection level: normal
2095 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002096 <permission android:name="android.permission.DISABLE_KEYGUARD"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002097 android:description="@string/permdesc_disableKeyguard"
Svetoslav61a4dd52015-04-09 10:17:40 -07002098 android:label="@string/permlab_disableKeyguard"
Svet Ganovb4673302015-05-12 20:50:14 -07002099 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002100
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002101 <!-- ================================== -->
2102 <!-- Permissions to access other installed applications -->
2103 <!-- ================================== -->
2104 <eat-comment />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002105
Dianne Hackborn2d7576b2014-10-03 16:26:04 -07002106 <!-- @deprecated No longer enforced. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002107 <permission android:name="android.permission.GET_TASKS"
Dianne Hackborn2d7576b2014-10-03 16:26:04 -07002108 android:label="@string/permlab_getTasks"
Svetoslav61a4dd52015-04-09 10:17:40 -07002109 android:description="@string/permdesc_getTasks"
2110 android:protectionLevel="normal" />
Dianne Hackborn2d7576b2014-10-03 16:26:04 -07002111
2112 <!-- New version of GET_TASKS that apps can request, since GET_TASKS doesn't really
2113 give access to task information. We need this new one because there are
2114 many existing apps that use add libraries and such that have validation
2115 code to ensure the app has requested the GET_TASKS permission by seeing
2116 if it has been granted the permission... if it hasn't, it kills the app
2117 with a message about being upset. So we need to have it continue to look
2118 like the app is getting that permission, even though it will never be
2119 checked, and new privileged apps can now request this one for real access.
2120 @hide
2121 @SystemApi -->
2122 <permission android:name="android.permission.REAL_GET_TASKS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002123 android:protectionLevel="signature|privileged" />
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002124
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07002125 <!-- Allows an application to start a task from a ActivityManager#RecentTaskInfo.
2126 @hide -->
2127 <permission android:name="android.permission.START_TASKS_FROM_RECENTS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002128 android:protectionLevel="signature|privileged" />
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07002129
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002130 <!-- @SystemApi @hide Allows an application to call APIs that allow it to do interactions
Dianne Hackbornb4163a62012-08-02 18:31:26 -07002131 across the users on the device, using singleton services and
2132 user-targeted broadcasts. This permission is not available to
2133 third party applications. -->
2134 <permission android:name="android.permission.INTERACT_ACROSS_USERS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002135 android:protectionLevel="signature|privileged|development" />
Dianne Hackbornb4163a62012-08-02 18:31:26 -07002136
Svet Ganovae0e03a2016-02-25 18:22:10 -08002137 <!-- @SystemApi Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
Dianne Hackbornb4163a62012-08-02 18:31:26 -07002138 that removes restrictions on where broadcasts can be sent and allows other
Svet Ganovae0e03a2016-02-25 18:22:10 -08002139 types of interactions
2140 @hide -->
Dianne Hackbornb4163a62012-08-02 18:31:26 -07002141 <permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
Svetoslav3e7d9772015-07-06 18:31:23 -07002142 android:protectionLevel="signature|installer" />
Dianne Hackbornb4163a62012-08-02 18:31:26 -07002143
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002144 <!-- @SystemApi @hide Allows an application to call APIs that allow it to query and manage
Amith Yamasani2a003292012-08-14 18:25:45 -07002145 users on the device. This permission is not available to
2146 third party applications. -->
2147 <permission android:name="android.permission.MANAGE_USERS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002148 android:protectionLevel="signature|privileged" />
Russell Brenner108da0c2013-02-12 10:03:14 -08002149
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002150 <!-- @hide Allows an application to create, remove users and get the list of
2151 users on the device. Applications holding this permission can only create restricted,
Sudheer Shanka234d1af2016-08-26 15:42:53 -07002152 guest, managed, demo, and ephemeral users. For creating other kind of users,
Sudheer Shankaf5cea032016-06-08 17:13:24 -07002153 {@link android.Manifest.permission#MANAGE_USERS} is needed.
2154 This permission is not available to third party applications. -->
2155 <permission android:name="android.permission.CREATE_USERS"
2156 android:protectionLevel="signature" />
2157
Nicolas Prevot28063742015-01-08 15:37:12 +00002158 <!-- @hide Allows an application to set the profile owners and the device owner.
2159 This permission is not available to third party applications.-->
2160 <permission android:name="android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS"
Nicolas Prevot28063742015-01-08 15:37:12 +00002161 android:protectionLevel="signature"
2162 android:label="@string/permlab_manageProfileAndDeviceOwners"
2163 android:description="@string/permdesc_manageProfileAndDeviceOwners" />
2164
Dianne Hackborn8238e712012-04-24 11:15:40 -07002165 <!-- Allows an application to get full detailed information about
2166 recently running tasks, with full fidelity to the real state.
2167 @hide -->
2168 <permission android:name="android.permission.GET_DETAILED_TASKS"
Svetoslav61a4dd52015-04-09 10:17:40 -07002169 android:protectionLevel="signature" />
Dianne Hackborn8238e712012-04-24 11:15:40 -07002170
Svetoslav71b6ca62015-06-25 18:19:14 -07002171 <!-- Allows an application to change the Z-order of tasks.
2172 <p>Protection level: normal
2173 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002174 <permission android:name="android.permission.REORDER_TASKS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002175 android:label="@string/permlab_reorderTasks"
Svetoslav61a4dd52015-04-09 10:17:40 -07002176 android:description="@string/permdesc_reorderTasks"
2177 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002178
Dianne Hackborn24a12102011-07-29 15:52:05 -07002179 <!-- @hide Allows an application to change to remove/kill tasks -->
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002180 <permission android:name="android.permission.REMOVE_TASKS"
Svetoslav61a4dd52015-04-09 10:17:40 -07002181 android:protectionLevel="signature" />
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002182
Jeff Sharkey23bc81d2018-03-27 14:25:55 -06002183 <!-- @SystemApi @TestApi @hide Allows an application to create/manage/remove stacks -->
Dianne Hackborn053f61d2013-06-26 18:07:43 -07002184 <permission android:name="android.permission.MANAGE_ACTIVITY_STACKS"
lumark793e0562018-07-09 22:14:33 +08002185 android:protectionLevel="signature|privileged" />
Dianne Hackborn053f61d2013-06-26 18:07:43 -07002186
Jeff Sharkey23bc81d2018-03-27 14:25:55 -06002187 <!-- @SystemApi @TestApi @hide Allows an application to embed other activities -->
Andrii Kulian71587642017-07-06 14:28:59 -07002188 <permission android:name="android.permission.ACTIVITY_EMBEDDING"
lumark793e0562018-07-09 22:14:33 +08002189 android:protectionLevel="signature|privileged" />
Andrii Kulian71587642017-07-06 14:28:59 -07002190
Jeff Sharkey35be7562012-04-18 19:16:15 -07002191 <!-- Allows an application to start any activity, regardless of permission
Svetoslav61a4dd52015-04-09 10:17:40 -07002192 protection or exported state.
2193 @hide -->
Jeff Sharkey35be7562012-04-18 19:16:15 -07002194 <permission android:name="android.permission.START_ANY_ACTIVITY"
Svetoslav61a4dd52015-04-09 10:17:40 -07002195 android:protectionLevel="signature" />
Jeff Sharkey35be7562012-04-18 19:16:15 -07002196
Suprabh Shukla3c3af142018-03-30 00:28:37 -07002197 <!-- @SystemApi Must be required by activities that handle the intent action
2198 {@link Intent#ACTION_SEND_SHOW_SUSPENDED_APP_DETAILS}. This is for use by apps that
2199 hold {@link Manifest.permission#SUSPEND_APPS} to interact with the system.
2200 <p>Not for use by third-party applications.
2201 @hide -->
2202 <permission android:name="android.permission.SEND_SHOW_SUSPENDED_APP_DETAILS"
2203 android:protectionLevel="signature" />
2204 <uses-permission android:name="android.permission.SEND_SHOW_SUSPENDED_APP_DETAILS" />
2205
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002206 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
2207 API is no longer supported. -->
2208 <permission android:name="android.permission.RESTART_PACKAGES"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002209 android:label="@string/permlab_killBackgroundProcesses"
Svetoslav61a4dd52015-04-09 10:17:40 -07002210 android:description="@string/permdesc_killBackgroundProcesses"
2211 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002212
2213 <!-- Allows an application to call
Svetoslav71b6ca62015-06-25 18:19:14 -07002214 {@link android.app.ActivityManager#killBackgroundProcesses}.
2215 <p>Protection level: normal
2216 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002217 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002218 android:label="@string/permlab_killBackgroundProcesses"
Svetoslav61a4dd52015-04-09 10:17:40 -07002219 android:description="@string/permdesc_killBackgroundProcesses"
2220 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002221
Chong Zhang8e4f4b32015-12-02 12:18:52 -08002222 <!-- @SystemApi @hide Allows an application to query process states and current
2223 OOM adjustment scores.
2224 <p>Not for use by third-party applications. -->
2225 <permission android:name="android.permission.GET_PROCESS_STATE_AND_OOM_SCORE"
2226 android:protectionLevel="signature|privileged|development" />
2227
Dianne Hackborne5ad41b2016-02-29 18:02:43 -08002228 <!-- Allows use of PendingIntent.getIntent().
2229 @hide -->
2230 <permission android:name="android.permission.GET_INTENT_SENDER_INTENT"
2231 android:protectionLevel="signature" />
2232
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002233 <!-- ================================== -->
2234 <!-- Permissions affecting the display of other applications -->
2235 <!-- ================================== -->
2236 <eat-comment />
2237
Trevor Johns682c24e2016-04-12 10:13:47 -07002238 <!-- Allows an app to create windows using the type
Wale Ogunwale791a8872017-02-22 10:39:29 -08002239 {@link android.view.WindowManager.LayoutParams#TYPE_APPLICATION_OVERLAY},
Trevor Johns682c24e2016-04-12 10:13:47 -07002240 shown on top of all other apps. Very few apps
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002241 should use this permission; these windows are intended for
Trevor Johns682c24e2016-04-12 10:13:47 -07002242 system-level interaction with the user.
2243
2244 <p class="note"><strong>Note:</strong> If the app
2245 targets API level 23 or higher, the app user must explicitly grant
2246 this permission to the app through a permission management screen. The app requests
2247 the user's approval by sending an intent with action
2248 {@link android.provider.Settings#ACTION_MANAGE_OVERLAY_PERMISSION}.
2249 The app can check whether it has this authorization by calling
2250 {@link android.provider.Settings#canDrawOverlays
2251 Settings.canDrawOverlays()}.
2252 <p>Protection level: signature -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002253 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002254 android:label="@string/permlab_systemAlertWindow"
Svetoslav61a4dd52015-04-09 10:17:40 -07002255 android:description="@string/permdesc_systemAlertWindow"
Svetoslav01af6a42015-10-27 15:22:39 -07002256 android:protectionLevel="signature|preinstalled|appop|pre23|development" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002257
Eugene Susla06642212017-04-27 17:09:23 -07002258 <!-- @deprecated Use {@link android.Manifest.permission#REQUEST_COMPANION_RUN_IN_BACKGROUND}
2259 @hide
Svet Ganovda0acdf2017-02-15 10:28:51 -08002260 -->
2261 <permission android:name="android.permission.RUN_IN_BACKGROUND"
2262 android:label="@string/permlab_runInBackground"
2263 android:description="@string/permdesc_runInBackground"
2264 android:protectionLevel="signature" />
2265
Eugene Susla06642212017-04-27 17:09:23 -07002266 <!-- @deprecated Use
2267 {@link android.Manifest.permission#REQUEST_COMPANION_USE_DATA_IN_BACKGROUND}
2268 @hide
Svet Ganovda0acdf2017-02-15 10:28:51 -08002269 -->
2270 <permission android:name="android.permission.USE_DATA_IN_BACKGROUND"
2271 android:label="@string/permlab_useDataInBackground"
2272 android:description="@string/permdesc_useDataInBackground"
2273 android:protectionLevel="signature" />
2274
Julius D'souza069f46c2017-03-22 13:27:00 -07002275 <!-- @hide Allows an application to set display offsets for the screen.
2276 This permission is not available to third party applications. -->
2277 <permission android:name="android.permission.SET_DISPLAY_OFFSET"
Julius D'souza8e9ea902017-04-11 23:41:27 -07002278 android:protectionLevel="signature|privileged" />
Julius D'souza069f46c2017-03-22 13:27:00 -07002279
Eugene Susla06642212017-04-27 17:09:23 -07002280 <!-- Allows a companion app to run in the background.
Eugene Suslafa09f7a2017-05-01 14:25:52 -07002281 <p>Protection level: normal
Eugene Susla06642212017-04-27 17:09:23 -07002282 -->
2283 <permission android:name="android.permission.REQUEST_COMPANION_RUN_IN_BACKGROUND"
2284 android:label="@string/permlab_runInBackground"
2285 android:description="@string/permdesc_runInBackground"
Eugene Suslafa09f7a2017-05-01 14:25:52 -07002286 android:protectionLevel="normal" />
Eugene Susla06642212017-04-27 17:09:23 -07002287
2288 <!-- Allows a companion app to use data in the background.
Eugene Suslafa09f7a2017-05-01 14:25:52 -07002289 <p>Protection level: normal
Eugene Susla06642212017-04-27 17:09:23 -07002290 -->
2291 <permission android:name="android.permission.REQUEST_COMPANION_USE_DATA_IN_BACKGROUND"
2292 android:label="@string/permlab_useDataInBackground"
2293 android:description="@string/permdesc_useDataInBackground"
Eugene Suslafa09f7a2017-05-01 14:25:52 -07002294 android:protectionLevel="normal" />
Eugene Susla06642212017-04-27 17:09:23 -07002295
2296
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002297 <!-- ================================== -->
2298 <!-- Permissions affecting the system wallpaper -->
2299 <!-- ================================== -->
2300 <eat-comment />
2301
Svetoslav71b6ca62015-06-25 18:19:14 -07002302 <!-- Allows applications to set the wallpaper.
2303 <p>Protection level: normal
2304 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002305 <permission android:name="android.permission.SET_WALLPAPER"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002306 android:label="@string/permlab_setWallpaper"
Svetoslav61a4dd52015-04-09 10:17:40 -07002307 android:description="@string/permdesc_setWallpaper"
2308 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002309
Svetoslav71b6ca62015-06-25 18:19:14 -07002310 <!-- Allows applications to set the wallpaper hints.
2311 <p>Protection level: normal
2312 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002313 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002314 android:label="@string/permlab_setWallpaperHints"
Svetoslav61a4dd52015-04-09 10:17:40 -07002315 android:description="@string/permdesc_setWallpaperHints"
2316 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002317
Christopher Tate8a71c482017-08-14 16:45:03 -07002318 <!-- Allow the app to read the system wallpaper image without
2319 holding the READ_EXTERNAL_STORAGE permission.
2320 <p>Not for use by third-party applications.
2321 @hide
2322 @SystemApi
2323 -->
2324 <permission android:name="android.permission.READ_WALLPAPER_INTERNAL"
2325 android:protectionLevel="signature|privileged" />
2326
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002327 <!-- ============================================ -->
2328 <!-- Permissions for changing the system clock -->
2329 <!-- ============================================ -->
2330 <eat-comment />
2331
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002332 <!-- @SystemApi Allows applications to set the system time.
Scott Main93e60b52013-06-10 11:05:55 -07002333 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002334 <permission android:name="android.permission.SET_TIME"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002335 android:protectionLevel="signature|privileged" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002336
Svetoslav71b6ca62015-06-25 18:19:14 -07002337 <!-- Allows applications to set the system time zone.
Christopher Tatea49078e2016-10-26 18:06:42 -07002338 <p>Not for use by third-party applications.
Svetoslav71b6ca62015-06-25 18:19:14 -07002339 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002340 <permission android:name="android.permission.SET_TIME_ZONE"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002341 android:label="@string/permlab_setTimeZone"
Svetoslav61a4dd52015-04-09 10:17:40 -07002342 android:description="@string/permdesc_setTimeZone"
Christopher Tatea49078e2016-10-26 18:06:42 -07002343 android:protectionLevel="signature|privileged" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002344
2345 <!-- ==================================================== -->
2346 <!-- Permissions related to changing status bar -->
2347 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -07002348 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002349
Svetoslav71b6ca62015-06-25 18:19:14 -07002350 <!-- Allows an application to expand or collapse the status bar.
2351 <p>Protection level: normal
2352 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002353 <permission android:name="android.permission.EXPAND_STATUS_BAR"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002354 android:label="@string/permlab_expandStatusBar"
Svetoslav61a4dd52015-04-09 10:17:40 -07002355 android:description="@string/permdesc_expandStatusBar"
2356 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002357
Winson Chung45167982013-09-25 15:17:40 -07002358 <!-- ============================================================== -->
2359 <!-- Permissions related to adding/removing shortcuts from Launcher -->
2360 <!-- ============================================================== -->
2361 <eat-comment />
2362
Svetoslav71b6ca62015-06-25 18:19:14 -07002363 <!-- Allows an application to install a shortcut in Launcher.
Kevin Hufnaglef5b210a2017-03-20 21:39:04 -07002364 <p>In Android O (API level 26) and higher, the <code>INSTALL_SHORTCUT</code> broadcast no
2365 longer has any effect on your app because it's a private, implicit
2366 broadcast. Instead, you should create an app shortcut by using the
2367 {@link android.content.pm.ShortcutManager#requestPinShortcut requestPinShortcut()}
2368 method from the {@link android.content.pm.ShortcutManager} class.
Svetoslav71b6ca62015-06-25 18:19:14 -07002369 <p>Protection level: normal
2370 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07002371 <permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
Winson Chung45167982013-09-25 15:17:40 -07002372 android:label="@string/permlab_install_shortcut"
Svetoslav61a4dd52015-04-09 10:17:40 -07002373 android:description="@string/permdesc_install_shortcut"
Hyunyoung Song8a1533e2015-06-19 15:27:42 -07002374 android:protectionLevel="normal"/>
Winson Chung45167982013-09-25 15:17:40 -07002375
Kevin Hufnagle789879a2018-02-02 11:07:15 -08002376 <!-- <p class="caution"><strong>Don't use this permission in your app.</strong><br>This
2377 permission is no longer supported.
Svetoslav71b6ca62015-06-25 18:19:14 -07002378 -->
Svetoslav61a4dd52015-04-09 10:17:40 -07002379 <permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"
Winson Chung45167982013-09-25 15:17:40 -07002380 android:label="@string/permlab_uninstall_shortcut"
Svetoslav61a4dd52015-04-09 10:17:40 -07002381 android:description="@string/permdesc_uninstall_shortcut"
Hyunyoung Song8a1533e2015-06-19 15:27:42 -07002382 android:protectionLevel="normal"/>
Winson Chung45167982013-09-25 15:17:40 -07002383
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002384 <!-- ==================================================== -->
2385 <!-- Permissions related to accessing sync settings -->
2386 <!-- ==================================================== -->
Dirk Doughertyf6878b02013-04-18 16:38:01 -07002387 <eat-comment />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002388
Svetoslav71b6ca62015-06-25 18:19:14 -07002389 <!-- Allows applications to read the sync settings.
2390 <p>Protection level: normal
2391 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002392 <permission android:name="android.permission.READ_SYNC_SETTINGS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002393 android:description="@string/permdesc_readSyncSettings"
Svetoslav61a4dd52015-04-09 10:17:40 -07002394 android:label="@string/permlab_readSyncSettings"
2395 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002396
Svetoslav71b6ca62015-06-25 18:19:14 -07002397 <!-- Allows applications to write the sync settings.
2398 <p>Protection level: normal
2399 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002400 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002401 android:description="@string/permdesc_writeSyncSettings"
Svetoslav61a4dd52015-04-09 10:17:40 -07002402 android:label="@string/permlab_writeSyncSettings"
2403 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002404
Svetoslav71b6ca62015-06-25 18:19:14 -07002405 <!-- Allows applications to read the sync stats.
2406 <p>Protection level: normal
2407 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002408 <permission android:name="android.permission.READ_SYNC_STATS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002409 android:description="@string/permdesc_readSyncStats"
Svetoslav61a4dd52015-04-09 10:17:40 -07002410 android:label="@string/permlab_readSyncStats"
2411 android:protectionLevel="normal" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002412
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002413 <!-- ============================================ -->
2414 <!-- Permissions for low-level system interaction -->
2415 <!-- ============================================ -->
2416 <eat-comment />
2417
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002418 <!-- @SystemApi @hide Change the screen compatibility mode of applications -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002419 <permission android:name="android.permission.SET_SCREEN_COMPATIBILITY"
Svetoslav61a4dd52015-04-09 10:17:40 -07002420 android:protectionLevel="signature" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002421
lumark793e0562018-07-09 22:14:33 +08002422 <!-- @SystemApi @TestApi Allows an application to modify the current configuration, such
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002423 as locale. -->
2424 <permission android:name="android.permission.CHANGE_CONFIGURATION"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002425 android:protectionLevel="signature|privileged|development" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002426
Svet Ganov39c8a082015-07-21 11:52:21 -07002427 <!-- Allows an application to read or write the system settings.
Trevor Johns682c24e2016-04-12 10:13:47 -07002428
2429 <p class="note"><strong>Note:</strong> If the app targets API level 23
2430 or higher, the app user
2431 must explicitly grant this permission to the app through a permission management screen.
2432 The app requests the user's approval by sending an intent with action
2433 {@link android.provider.Settings#ACTION_MANAGE_WRITE_SETTINGS}. The app
2434 can check whether it has this authorization by calling {@link
2435 android.provider.Settings.System#canWrite Settings.System.canWrite()}.
2436
2437 <p>Protection level: signature
Svet Ganov39c8a082015-07-21 11:52:21 -07002438 -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002439 <permission android:name="android.permission.WRITE_SETTINGS"
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002440 android:label="@string/permlab_writeSettings"
Svetoslav61a4dd52015-04-09 10:17:40 -07002441 android:description="@string/permdesc_writeSettings"
Billy Lau22b3f4c2015-07-08 00:31:01 +01002442 android:protectionLevel="signature|preinstalled|appop|pre23" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002443
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002444 <!-- @SystemApi Allows an application to modify the Google service map.
Scott Main93e60b52013-06-10 11:05:55 -07002445 <p>Not for use by third-party applications. -->
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002446 <permission android:name="android.permission.WRITE_GSERVICES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002447 android:protectionLevel="signature|privileged" />
Dianne Hackborncd403fc2012-09-13 00:24:38 -07002448
lumark793e0562018-07-09 22:14:33 +08002449 <!-- @SystemApi @TestApi Allows an application to call
Dianne Hackborn03abb812010-01-04 18:43:19 -08002450 {@link android.app.ActivityManager#forceStopPackage}.
2451 @hide -->
2452 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002453 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002454
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002455 <!-- @SystemApi @hide Allows an application to retrieve the content of the active window
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07002456 An active window is the window that has fired an accessibility event. -->
2457 <permission android:name="android.permission.RETRIEVE_WINDOW_CONTENT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002458 android:protectionLevel="signature|privileged" />
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07002459
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002460 <!-- @SystemApi Modify the global animation scaling factor.
Scott Main93e60b52013-06-10 11:05:55 -07002461 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002462 <permission android:name="android.permission.SET_ANIMATION_SCALE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002463 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002464
Dianne Hackbornd3efa392010-09-01 17:34:12 -07002465 <!-- @deprecated This functionality will be removed in the future; please do
Adrian Ludwigdc410cb2012-04-13 13:51:48 -07002466 not use. Allow an application to make its activities persistent. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002467 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002468 android:label="@string/permlab_persistentActivity"
Svetoslav61a4dd52015-04-09 10:17:40 -07002469 android:description="@string/permdesc_persistentActivity"
2470 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002471
Svetoslav71b6ca62015-06-25 18:19:14 -07002472 <!-- Allows an application to find out the space used by any package.
2473 <p>Protection level: normal
2474 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002475 <permission android:name="android.permission.GET_PACKAGE_SIZE"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002476 android:label="@string/permlab_getPackageSize"
Svetoslav61a4dd52015-04-09 10:17:40 -07002477 android:description="@string/permdesc_getPackageSize"
2478 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002479
Dianne Hackborna7ca0e52009-12-01 14:31:55 -08002480 <!-- @deprecated No longer useful, see
2481 {@link android.content.pm.PackageManager#addPackageToPreferred}
2482 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002483 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
Jeff Schumacher6fd90ed2017-01-20 13:58:34 -08002484 android:protectionLevel="signature|verifier" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002485
2486 <!-- Allows an application to receive the
2487 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
2488 broadcast after the system finishes booting. If you don't
2489 request this permission, you will not receive the broadcast at
2490 that time. Though holding this permission does not have any
2491 security implications, it can have a negative impact on the
2492 user experience by increasing the amount of time it takes the
2493 system to start and allowing applications to have themselves
2494 running without the user being aware of them. As such, you must
2495 explicitly declare your use of this facility to make that visible
Svetoslav71b6ca62015-06-25 18:19:14 -07002496 to the user.
2497 <p>Protection level: normal
2498 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002499 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002500 android:label="@string/permlab_receiveBootCompleted"
Svetoslav61a4dd52015-04-09 10:17:40 -07002501 android:description="@string/permdesc_receiveBootCompleted"
2502 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002503
2504 <!-- Allows an application to broadcast sticky intents. These are
2505 broadcasts whose data is held by the system after being finished,
2506 so that clients can quickly retrieve that data without having
Svetoslav71b6ca62015-06-25 18:19:14 -07002507 to wait for the next broadcast.
2508 <p>Protection level: normal
2509 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002510 <permission android:name="android.permission.BROADCAST_STICKY"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002511 android:label="@string/permlab_broadcastSticky"
Svetoslav61a4dd52015-04-09 10:17:40 -07002512 android:description="@string/permdesc_broadcastSticky"
2513 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002514
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002515 <!-- @SystemApi Allows mounting and unmounting file systems for removable storage.
Scott Main93e60b52013-06-10 11:05:55 -07002516 <p>Not for use by third-party applications.-->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002517 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03002518 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002519
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002520 <!-- @SystemApi Allows formatting file systems for removable storage.
Scott Main93e60b52013-06-10 11:05:55 -07002521 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002522 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03002523 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002524
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08002525 <!-- @hide -->
2526 <permission android:name="android.permission.STORAGE_INTERNAL"
2527 android:protectionLevel="signature" />
2528
San Mehat02735bc2010-01-26 15:18:08 -08002529 <!-- Allows access to ASEC non-destructive API calls
2530 @hide -->
2531 <permission android:name="android.permission.ASEC_ACCESS"
Svetoslav61a4dd52015-04-09 10:17:40 -07002532 android:protectionLevel="signature" />
San Mehat02735bc2010-01-26 15:18:08 -08002533
2534 <!-- Allows creation of ASEC volumes
2535 @hide -->
2536 <permission android:name="android.permission.ASEC_CREATE"
Svetoslav61a4dd52015-04-09 10:17:40 -07002537 android:protectionLevel="signature" />
San Mehat02735bc2010-01-26 15:18:08 -08002538
2539 <!-- Allows destruction of ASEC volumes
2540 @hide -->
2541 <permission android:name="android.permission.ASEC_DESTROY"
Svetoslav61a4dd52015-04-09 10:17:40 -07002542 android:protectionLevel="signature" />
San Mehat02735bc2010-01-26 15:18:08 -08002543
2544 <!-- Allows mount / unmount of ASEC volumes
2545 @hide -->
2546 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
Svetoslav61a4dd52015-04-09 10:17:40 -07002547 android:protectionLevel="signature" />
San Mehat02735bc2010-01-26 15:18:08 -08002548
2549 <!-- Allows rename of ASEC volumes
2550 @hide -->
2551 <permission android:name="android.permission.ASEC_RENAME"
Svetoslav61a4dd52015-04-09 10:17:40 -07002552 android:protectionLevel="signature" />
San Mehat02735bc2010-01-26 15:18:08 -08002553
Jordan Liucd0bc572018-07-10 11:24:42 -07002554 <!-- @SystemApi Allows applications to write the apn settings and read sensitive fields of
2555 an existing apn settings like user and password.
Scott Main93e60b52013-06-10 11:05:55 -07002556 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002557 <permission android:name="android.permission.WRITE_APN_SETTINGS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002558 android:protectionLevel="signature|privileged" />
Fred Quintana60307342009-03-24 22:48:12 -07002559
Svetoslav71b6ca62015-06-25 18:19:14 -07002560 <!-- Allows applications to change network connectivity state.
Lorenzo Colittid5427052015-10-15 16:29:00 +09002561 <p>Protection level: normal
Svetoslav71b6ca62015-06-25 18:19:14 -07002562 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002563 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002564 android:description="@string/permdesc_changeNetworkState"
Svetoslav61a4dd52015-04-09 10:17:40 -07002565 android:label="@string/permlab_changeNetworkState"
Lorenzo Colittid5427052015-10-15 16:29:00 +09002566 android:protectionLevel="normal" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002567
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002568 <!-- Allows an application to clear the caches of all installed
Svetoslav71b6ca62015-06-25 18:19:14 -07002569 applications on the device.
Peter Visontayfb5883e2017-07-10 16:26:58 +01002570 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07002571 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002572 <permission android:name="android.permission.CLEAR_APP_CACHE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002573 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002574
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002575 <!-- @SystemApi Allows an application to use any media decoder when decoding for playback
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08002576 @hide -->
2577 <permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002578 android:protectionLevel="signature|privileged" />
Jean-Michel Trivi4ba27fe2011-11-07 14:35:20 -08002579
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002580 <!-- @SystemApi Allows an application to install and/or uninstall CA certificates on
Maggie Benthallda51e682013-08-08 22:35:44 -04002581 behalf of the user.
2582 @hide -->
2583 <permission android:name="android.permission.MANAGE_CA_CERTIFICATES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002584 android:protectionLevel="signature|privileged" />
Maggie Benthallda51e682013-08-08 22:35:44 -04002585
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002586 <!-- @SystemApi Allows an application to do certain operations needed for
Doug Zongker183415e2014-08-12 10:18:40 -07002587 interacting with the recovery (system update) system.
2588 @hide -->
Doug Zongker3b0218b2014-01-14 12:29:06 -08002589 <permission android:name="android.permission.RECOVERY"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002590 android:protectionLevel="signature|privileged" />
Doug Zongker3b0218b2014-01-14 12:29:06 -08002591
Tao Bao07342dc2017-01-24 15:08:21 -08002592 <!-- @SystemApi Allows an application to read system update info.
2593 @hide -->
2594 <permission android:name="android.permission.READ_SYSTEM_UPDATE_INFO"
2595 android:protectionLevel="signature" />
2596
Christopher Tate115afda2014-06-06 19:06:26 -07002597 <!-- Allows the system to bind to an application's task services
Christopher Tated417d622013-08-19 16:14:25 -07002598 @hide -->
Christopher Tate7060b042014-06-09 19:50:00 -07002599 <permission android:name="android.permission.BIND_JOB_SERVICE"
Svetoslav61a4dd52015-04-09 10:17:40 -07002600 android:protectionLevel="signature" />
Christopher Tate7060b042014-06-09 19:50:00 -07002601 <uses-permission android:name="android.permission.BIND_JOB_SERVICE"/>
Christopher Tated417d622013-08-19 16:14:25 -07002602
Ben Gruver12964bf2015-04-06 10:55:08 -07002603 <!-- Allows an application to initiate configuration updates
2604 <p>An application requesting this permission is responsible for
2605 verifying the source and integrity of any update before passing
2606 it off to the various individual installer components
2607 @hide -->
2608 <permission android:name="android.permission.UPDATE_CONFIG"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002609 android:protectionLevel="signature|privileged" />
Ben Gruver12964bf2015-04-06 10:55:08 -07002610
Neil Fullerb214bc42017-12-18 16:57:22 +00002611 <!-- Allows an application to query the current time zone rules state
2612 on device.
2613 @SystemApi @hide -->
2614 <permission android:name="android.permission.QUERY_TIME_ZONE_RULES"
2615 android:protectionLevel="signature|privileged" />
2616
Neil Fullerfe6ec562017-03-16 18:29:36 +00002617 <!-- Allows a time zone rule updater application to request
2618 the system installs / uninstalls timezone rules.
2619 <p>An application requesting this permission is responsible for
2620 verifying the source and integrity of the update before passing
2621 it off to the installer components.
Neil Fuller8bb41402017-08-11 13:22:36 +01002622 @SystemApi @hide -->
Neil Fullerfe6ec562017-03-16 18:29:36 +00002623 <permission android:name="android.permission.UPDATE_TIME_ZONE_RULES"
2624 android:protectionLevel="signature|privileged" />
2625
2626 <!-- Must be required by a time zone rule updater application,
2627 to ensure that only the system can trigger it.
2628 @hide -->
2629 <permission android:name="android.permission.TRIGGER_TIME_ZONE_RULES_CHECK"
2630 android:protectionLevel="signature" />
2631 <uses-permission android:name="android.permission.TRIGGER_TIME_ZONE_RULES_CHECK"/>
2632
Makoto Onuki4d36b3a2016-04-27 12:00:17 -07002633 <!-- Allows the system to reset throttling in shortcut manager.
2634 @hide -->
2635 <permission android:name="android.permission.RESET_SHORTCUT_MANAGER_THROTTLING"
2636 android:protectionLevel="signature" />
2637
Jeremy Joslin72f5e082016-12-28 10:32:46 -08002638 <!-- Allows the system to bind to the discovered Network Recommendation Service.
2639 @SystemApi @hide -->
2640 <permission android:name="android.permission.BIND_NETWORK_RECOMMENDATION_SERVICE"
2641 android:protectionLevel="signature" />
Jeremy Joslind6876932016-12-29 10:18:48 -08002642 <uses-permission android:name="android.permission.BIND_NETWORK_RECOMMENDATION_SERVICE"/>
Jeremy Joslin72f5e082016-12-28 10:32:46 -08002643
Mårten Kongstadeabc9e92015-12-15 16:40:23 +01002644 <!-- Allows an application to enable, disable and change priority of
2645 runtime resource overlays.
2646 @hide -->
2647 <permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES"
Adam Lesinskiaea3cf42017-02-23 18:17:11 -08002648 android:protectionLevel="signature|privileged" />
Mårten Kongstadeabc9e92015-12-15 16:40:23 +01002649
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 <!-- ========================================= -->
2651 <!-- Permissions for special development tools -->
2652 <!-- ========================================= -->
2653 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -07002654
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002655 <!-- @SystemApi Allows an application to read or write the secure system settings.
Scott Main93e60b52013-06-10 11:05:55 -07002656 <p>Not for use by third-party applications. -->
Dianne Hackborne639da72012-02-21 15:11:13 -08002657 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002658 android:protectionLevel="signature|privileged|development" />
Dianne Hackborne639da72012-02-21 15:11:13 -08002659
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002660 <!-- @SystemApi Allows an application to retrieve state dump information from system services.
Scott Main93e60b52013-06-10 11:05:55 -07002661 <p>Not for use by third-party applications. -->
Dianne Hackborne639da72012-02-21 15:11:13 -08002662 <permission android:name="android.permission.DUMP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002663 android:protectionLevel="signature|privileged|development" />
Dianne Hackborne639da72012-02-21 15:11:13 -08002664
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002665 <!-- @SystemApi Allows an application to read the low-level system log files.
Scott Main93e60b52013-06-10 11:05:55 -07002666 <p>Not for use by third-party applications, because
2667 Log entries can contain the user's private information. -->
Nick Kralevichcb5863e2012-03-23 10:06:06 -07002668 <permission android:name="android.permission.READ_LOGS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002669 android:protectionLevel="signature|privileged|development" />
Nick Kralevichcb5863e2012-03-23 10:06:06 -07002670
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002671 <!-- @SystemApi Configure an application for debugging.
Scott Main93e60b52013-06-10 11:05:55 -07002672 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002673 <permission android:name="android.permission.SET_DEBUG_APP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002674 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002675
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002676 <!-- @SystemApi Allows an application to set the maximum number of (not needed)
Scott Main93e60b52013-06-10 11:05:55 -07002677 application processes that can be running.
2678 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002679 <permission android:name="android.permission.SET_PROCESS_LIMIT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002680 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002681
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002682 <!-- @SystemApi Allows an application to control whether activities are immediately
Scott Main93e60b52013-06-10 11:05:55 -07002683 finished when put in the background.
2684 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002685 <permission android:name="android.permission.SET_ALWAYS_FINISH"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002686 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002687
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002688 <!-- @SystemApi Allow an application to request that a signal be sent to all persistent processes.
Scott Main93e60b52013-06-10 11:05:55 -07002689 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002690 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002691 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002692
2693 <!-- ==================================== -->
Svetoslav61a4dd52015-04-09 10:17:40 -07002694 <!-- Private permissions -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002695 <!-- ==================================== -->
2696 <eat-comment />
2697
Svet Ganov2062eef2015-07-21 19:23:17 -07002698 <!-- @SystemApi Allows access to the list of accounts in the Accounts Service. -->
2699 <permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED"
2700 android:protectionLevel="signature|privileged" />
2701
Carlos Valdivia714bbd82016-04-22 14:10:40 -07002702 <!-- Allows but does not guarantee access to user passwords at the conclusion of add account
2703 @hide -->
2704 <permission android:name="android.permission.GET_PASSWORD"
2705 android:protectionLevel="signature" />
Carlos Valdivia51b651a2016-03-30 13:44:28 -07002706
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002707 <!-- @SystemApi Allows applications to RW to diagnostic resources.
Scott Main93e60b52013-06-10 11:05:55 -07002708 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002709 <permission android:name="android.permission.DIAGNOSTIC"
Svetoslav61a4dd52015-04-09 10:17:40 -07002710 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002711
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002712 <!-- @SystemApi Allows an application to open, close, or disable the status bar
Scott Main93e60b52013-06-10 11:05:55 -07002713 and its icons.
2714 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002715 <permission android:name="android.permission.STATUS_BAR"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002716 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002717
Joe Onorato8bc6c512010-06-04 16:21:12 -04002718 <!-- Allows an application to be the status bar. Currently used only by SystemUI.apk
2719 @hide -->
2720 <permission android:name="android.permission.STATUS_BAR_SERVICE"
Joe Onorato8bc6c512010-06-04 16:21:12 -04002721 android:protectionLevel="signature" />
2722
Jason Monkbbadff82015-11-06 15:47:26 -05002723 <!-- Allows an application to bind to third party quick settings tiles.
2724 <p>Should only be requested by the System, should be required by
Jason Monkd5a204f2015-12-21 08:50:01 -05002725 TileService declarations.-->
Jason Monkbbadff82015-11-06 15:47:26 -05002726 <permission android:name="android.permission.BIND_QUICK_SETTINGS_TILE"
2727 android:protectionLevel="signature" />
2728
Svetoslav71b6ca62015-06-25 18:19:14 -07002729 <!-- @SystemApi Allows an application to force a BACK operation on whatever is the
Scott Main93e60b52013-06-10 11:05:55 -07002730 top activity.
Svetoslav71b6ca62015-06-25 18:19:14 -07002731 <p>Not for use by third-party applications.
2732 @hide
2733 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002734 <permission android:name="android.permission.FORCE_BACK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002735 android:protectionLevel="signature" />
2736
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002737 <!-- @SystemApi Allows an application to update device statistics.
Scott Main93e60b52013-06-10 11:05:55 -07002738 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002739 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002740 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002741
Peter Visontaye19d8412017-08-08 16:25:17 +01002742 <!-- @SystemApi @hide Allows an application to collect application operation statistics.
2743 Not for use by third party apps. -->
Dianne Hackborn35654b62013-01-14 17:38:02 -08002744 <permission android:name="android.permission.GET_APP_OPS_STATS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002745 android:protectionLevel="signature|privileged|development" />
Dianne Hackborn35654b62013-01-14 17:38:02 -08002746
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002747 <!-- @SystemApi Allows an application to update application operation statistics. Not for
Svet Ganovae0e03a2016-02-25 18:22:10 -08002748 use by third party apps.
2749 @hide -->
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002750 <permission android:name="android.permission.UPDATE_APP_OPS_STATS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002751 android:protectionLevel="signature|privileged|installer" />
Dianne Hackborna06de0f2012-12-11 16:34:47 -08002752
Svet Ganovae0e03a2016-02-25 18:22:10 -08002753 <!-- @SystemApi Allows an application to update the user app op restrictions.
Svet Ganov9cea80cd2016-02-16 11:47:00 -08002754 Not for use by third party apps.
2755 @hide -->
2756 <permission android:name="android.permission.MANAGE_APP_OPS_RESTRICTIONS"
2757 android:protectionLevel="signature|installer" />
2758
Dianne Hackbornbf1b57d2018-03-07 12:42:47 -08002759 <!-- Allows an application to update the user app op modes.
2760 Not for use by third party apps.
2761 @hide -->
2762 <permission android:name="android.permission.MANAGE_APP_OPS_MODES"
2763 android:protectionLevel="signature|installer|verifier" />
2764
Svetoslav71b6ca62015-06-25 18:19:14 -07002765 <!-- @SystemApi Allows an application to open windows that are for use by parts
Scott Main93e60b52013-06-10 11:05:55 -07002766 of the system user interface.
Svetoslav71b6ca62015-06-25 18:19:14 -07002767 <p>Not for use by third-party applications.
2768 @hide
2769 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002770 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002771 android:protectionLevel="signature" />
2772
Wale Ogunwale01ad4342017-06-30 07:07:01 -07002773 <!-- @SystemApi Allows an application to use
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07002774 {@link android.view.WindowManager.LayoutsParams#SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS}
Wale Ogunwale01ad4342017-06-30 07:07:01 -07002775 to hide non-system-overlay windows.
2776 <p>Not for use by third-party applications.
2777 @hide
2778 -->
2779 <permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"
2780 android:protectionLevel="signature|installer" />
2781
Svetoslav71b6ca62015-06-25 18:19:14 -07002782 <!-- @SystemApi Allows an application to manage (create, destroy,
Scott Main93e60b52013-06-10 11:05:55 -07002783 Z-order) application tokens in the window manager.
Svetoslav71b6ca62015-06-25 18:19:14 -07002784 <p>Not for use by third-party applications.
2785 @hide
2786 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 <permission android:name="android.permission.MANAGE_APP_TOKENS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002788 android:protectionLevel="signature" />
2789
Filip Gruszczynski64cdc142015-11-29 21:10:07 -08002790 <!-- Allows System UI to register listeners for events from Window Manager.
2791 @hide -->
2792 <permission android:name="android.permission.REGISTER_WINDOW_MANAGER_LISTENERS"
2793 android:protectionLevel="signature" />
2794
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07002795 <!-- @hide Allows the application to temporarily freeze the screen for a
2796 full-screen transition. -->
2797 <permission android:name="android.permission.FREEZE_SCREEN"
Dianne Hackborn9d9ece32012-09-10 15:33:52 -07002798 android:protectionLevel="signature" />
Russell Brenner108da0c2013-02-12 10:03:14 -08002799
Svetoslav71b6ca62015-06-25 18:19:14 -07002800 <!-- @SystemApi Allows an application to inject user events (keys, touch, trackball)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002801 into the event stream and deliver them to ANY window. Without this
2802 permission, you can only deliver events to windows in your own process.
Svetoslav71b6ca62015-06-25 18:19:14 -07002803 <p>Not for use by third-party applications.
2804 @hide
2805 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806 <permission android:name="android.permission.INJECT_EVENTS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002807 android:protectionLevel="signature" />
2808
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07002809 <!-- @hide Allows an application to register an input filter which filters the stream
2810 of user events (keys, touch, trackball) before they are dispatched to any window. -->
2811 <permission android:name="android.permission.FILTER_EVENTS"
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07002812 android:protectionLevel="signature" />
2813
Svetoslav1376d602014-03-13 11:17:26 -07002814 <!-- @hide Allows an application to retrieve the window token from the accessibility manager. -->
2815 <permission android:name="android.permission.RETRIEVE_WINDOW_TOKEN"
Svetoslav1376d602014-03-13 11:17:26 -07002816 android:protectionLevel="signature" />
2817
Phil Weaverf00cd142017-03-03 13:44:00 -08002818 <!-- @hide Allows an application to modify accessibility information from another app. -->
2819 <permission android:name="android.permission.MODIFY_ACCESSIBILITY_DATA"
2820 android:protectionLevel="signature" />
2821
Phil Weaverf1a9aff2017-03-23 17:21:29 -07002822 <!-- @hide Allows an application to change the accessibility volume. -->
2823 <permission android:name="android.permission.CHANGE_ACCESSIBILITY_VOLUME"
2824 android:protectionLevel="signature" />
2825
Svetoslav1376d602014-03-13 11:17:26 -07002826 <!-- @hide Allows an application to collect frame statistics -->
2827 <permission android:name="android.permission.FRAME_STATS"
Svetoslav1376d602014-03-13 11:17:26 -07002828 android:protectionLevel="signature" />
2829
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07002830 <!-- @hide Allows an application to temporary enable accessibility on the device. -->
2831 <permission android:name="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07002832 android:protectionLevel="signature" />
2833
Svetoslav71b6ca62015-06-25 18:19:14 -07002834 <!-- @SystemApi Allows an application to watch and control how activities are
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002835 started globally in the system. Only for is in debugging
Scott Main93e60b52013-06-10 11:05:55 -07002836 (usually the monkey command).
Svetoslav71b6ca62015-06-25 18:19:14 -07002837 <p>Not for use by third-party applications.
2838 @hide
2839 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002840 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 android:protectionLevel="signature" />
2842
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002843 <!-- @SystemApi Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -07002844 to put the higher-level system there into a shutdown state.
2845 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -07002846 <permission android:name="android.permission.SHUTDOWN"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002847 android:protectionLevel="signature|privileged" />
Dianne Hackborn55280a92009-05-07 15:53:46 -07002848
Jeff Brownb61eaaa2014-06-06 19:46:26 -07002849 <!-- @SystemApi Allows an application to tell the activity manager to temporarily
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07002850 stop application switches, putting it into a special mode that
2851 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -07002852 critical UI such as the home screen.
2853 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07002854 <permission android:name="android.permission.STOP_APP_SWITCHES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002855 android:protectionLevel="signature|privileged" />
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07002856
Svetoslav71b6ca62015-06-25 18:19:14 -07002857 <!-- @SystemApi Allows an application to retrieve private information about
Scott Main93e60b52013-06-10 11:05:55 -07002858 the current top activity, such as any assist context it can provide.
Svetoslav71b6ca62015-06-25 18:19:14 -07002859 <p>Not for use by third-party applications.
2860 @hide
2861 -->
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002862 <permission android:name="android.permission.GET_TOP_ACTIVITY_INFO"
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002863 android:protectionLevel="signature" />
2864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002865 <!-- Allows an application to retrieve the current state of keys and
Scott Main93e60b52013-06-10 11:05:55 -07002866 switches.
2867 <p>Not for use by third-party applications.
Jeff Brownac143512012-04-05 18:57:33 -07002868 @deprecated The API that used this permission has been removed. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002869 <permission android:name="android.permission.READ_INPUT_STATE"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002870 android:protectionLevel="signature" />
2871
Dianne Hackbornd6847842010-01-12 18:14:19 -08002872 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002873 to ensure that only the system can bind to it.
2874 <p>Protection level: signature
2875 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002876 <permission android:name="android.permission.BIND_INPUT_METHOD"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002877 android:protectionLevel="signature" />
2878
Mike Lockwoode0a6ca62015-06-04 13:43:56 -07002879 <!-- Must be required by an {@link android.media.midi.MidiDeviceService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002880 to ensure that only the system can bind to it.
2881 <p>Protection level: signature
2882 -->
Mike Lockwoode0a6ca62015-06-04 13:43:56 -07002883 <permission android:name="android.permission.BIND_MIDI_DEVICE_SERVICE"
2884 android:protectionLevel="signature" />
2885
Svetoslav38228962013-01-29 01:04:35 -08002886 <!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002887 to ensure that only the system can bind to it.
2888 <p>Protection level: signature
2889 -->
Svetoslav Ganove63049b2012-05-16 18:27:34 -07002890 <permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
Svetoslav Ganove63049b2012-05-16 18:27:34 -07002891 android:protectionLevel="signature" />
2892
Jeff Brown511cd352013-08-23 17:43:37 -07002893 <!-- Must be required by a {@link android.printservice.PrintService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002894 to ensure that only the system can bind to it.
2895 <p>Protection level: signature
2896 -->
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07002897 <permission android:name="android.permission.BIND_PRINT_SERVICE"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07002898 android:protectionLevel="signature" />
2899
Philip P. Moltmann9dcb86a2016-03-14 14:31:12 -07002900 <!-- Must be required by a {@link android.printservice.recommendation.RecommendationService},
2901 to ensure that only the system can bind to it.
2902 @hide
2903 @SystemApi
2904 <p>Protection level: signature
2905 -->
2906 <permission android:name="android.permission.BIND_PRINT_RECOMMENDATION_SERVICE"
2907 android:protectionLevel="signature" />
2908
Philip P. Moltmann68700332017-06-19 10:55:09 -07002909 <!-- Allows applications to get the installed and enabled print services.
2910 @hide
2911 @SystemApi
Philip P. Moltmann68700332017-06-19 10:55:09 -07002912 <p>Protection level: signature|preinstalled
2913 -->
2914 <permission android:name="android.permission.READ_PRINT_SERVICES"
2915 android:protectionLevel="signature|preinstalled" />
2916
2917 <!-- Allows applications to get the currently recommended print services for printers.
2918 @hide
2919 @SystemApi
2920 <p>Protection level: signature|preinstalled
2921 -->
2922 <permission android:name="android.permission.READ_PRINT_SERVICE_RECOMMENDATIONS"
2923 android:protectionLevel="signature|preinstalled" />
2924
Jeff Brown511cd352013-08-23 17:43:37 -07002925 <!-- Must be required by a {@link android.nfc.cardemulation.HostApduService}
Martijn Coenena7397882013-07-30 20:07:47 -07002926 or {@link android.nfc.cardemulation.OffHostApduService} to ensure that only
Svetoslav71b6ca62015-06-25 18:19:14 -07002927 the system can bind to it.
2928 <p>Protection level: signature
2929 -->
Martijn Coenena7397882013-07-30 20:07:47 -07002930 <permission android:name="android.permission.BIND_NFC_SERVICE"
Martijn Coenena7397882013-07-30 20:07:47 -07002931 android:protectionLevel="signature" />
2932
Dianne Hackbornebc15ef2013-10-09 17:36:57 -07002933 <!-- Must be required by the PrintSpooler to ensure that only the system can bind to it.
2934 @hide -->
Svetoslav Ganovd26d4892013-08-28 14:37:54 -07002935 <permission android:name="android.permission.BIND_PRINT_SPOOLER_SERVICE"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07002936 android:protectionLevel="signature" />
2937
Eugene Susla6ed45d82017-01-22 13:52:51 -08002938 <!-- Must be required by the CompanionDeviceManager to ensure that only the system can bind to it.
2939 @hide -->
2940 <permission android:name="android.permission.BIND_COMPANION_DEVICE_MANAGER_SERVICE"
2941 android:protectionLevel="signature" />
2942
Svet Ganovae0e03a2016-02-25 18:22:10 -08002943 <!-- @SystemApi Must be required by the RuntimePermissionPresenterService to ensure
2944 that only the system can bind to it.
2945 @hide -->
2946 <permission android:name="android.permission.BIND_RUNTIME_PERMISSION_PRESENTER_SERVICE"
2947 android:protectionLevel="signature" />
2948
2949 <!-- Must be required by a TextService (e.g. SpellCheckerService)
Svetoslav71b6ca62015-06-25 18:19:14 -07002950 to ensure that only the system can bind to it.
2951 <p>Protection level: signature
2952 -->
satok988323c2011-06-22 16:38:13 +09002953 <permission android:name="android.permission.BIND_TEXT_SERVICE"
satok988323c2011-06-22 16:38:13 +09002954 android:protectionLevel="signature" />
2955
Jeff Brown511cd352013-08-23 17:43:37 -07002956 <!-- Must be required by a {@link android.net.VpnService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002957 to ensure that only the system can bind to it.
2958 <p>Protection level: signature
2959 -->
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07002960 <permission android:name="android.permission.BIND_VPN_SERVICE"
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07002961 android:protectionLevel="signature" />
2962
Dianne Hackbornd6847842010-01-12 18:14:19 -08002963 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002964 to ensure that only the system can bind to it.
Peter Visontayfb5883e2017-07-10 16:26:58 +01002965 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07002966 -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002967 <permission android:name="android.permission.BIND_WALLPAPER"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07002968 android:protectionLevel="signature|privileged" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002969
Dianne Hackborn91097de2014-04-04 18:02:06 -07002970 <!-- Must be required by a {@link android.service.voice.VoiceInteractionService},
Svetoslav71b6ca62015-06-25 18:19:14 -07002971 to ensure that only the system can bind to it.
2972 <p>Protection level: signature
2973 -->
Dianne Hackborn91097de2014-04-04 18:02:06 -07002974 <permission android:name="android.permission.BIND_VOICE_INTERACTION"
Dianne Hackborn91097de2014-04-04 18:02:06 -07002975 android:protectionLevel="signature" />
2976
Felipe Leme640f30a2017-03-06 15:44:06 -08002977 <!-- Must be required by a {@link android.service.autofill.AutofillService},
Felipe Leme5381aa42016-10-13 09:02:32 -07002978 to ensure that only the system can bind to it.
2979 <p>Protection level: signature
2980 -->
Felipe Lemedecd8872017-04-26 17:42:38 -07002981 <permission android:name="android.permission.BIND_AUTOFILL_SERVICE"
Felipe Leme640f30a2017-03-06 15:44:06 -08002982 android:protectionLevel="signature" />
2983
Felipe Leme87b7f8f2018-01-30 18:39:28 +00002984 <!-- Alternative version of android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE.
2985 This permission was renamed during the O previews but it was supported on the final O
2986 release, so we need to carry it over.
2987 <p>Protection level: signature
2988 @hide
2989 -->
2990 <permission android:name="android.permission.BIND_AUTOFILL"
2991 android:protectionLevel="signature" />
2992
Felipe Lemebc055b02018-01-05 17:04:10 -08002993 <!-- Must be required by an {@link android.service.autofill.AutofillFieldClassificationService}
2994 to ensure that only the system can bind to it.
2995 @hide This is not a third-party API (intended for OEMs and system apps).
2996 -->
2997 <permission android:name="android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE"
2998 android:protectionLevel="signature" />
2999
Abodunrinwa Tokid32906c2018-01-18 04:34:44 -08003000 <!-- Must be required by a android.service.textclassifier.TextClassifierService,
3001 to ensure that only the system can bind to it.
3002 @SystemApi @hide This is not a third-party API (intended for OEMs and system apps).
3003 <p>Protection level: signature
3004 -->
3005 <permission android:name="android.permission.BIND_TEXTCLASSIFIER_SERVICE"
3006 android:protectionLevel="signature" />
3007
Sandeep Siddharthae5706782014-05-29 17:54:06 -07003008 <!-- Must be required by hotword enrollment application,
3009 to ensure that only the system can interact with it.
3010 @hide <p>Not for use by third-party applications.</p> -->
3011 <permission android:name="android.permission.MANAGE_VOICE_KEYPHRASES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003012 android:protectionLevel="signature|privileged" />
Sandeep Siddharthae5706782014-05-29 17:54:06 -07003013
Jeff Brownf3c99e82013-11-05 16:29:21 -08003014 <!-- Must be required by a {@link com.android.media.remotedisplay.RemoteDisplayProvider},
3015 to ensure that only the system can bind to it.
3016 @hide -->
3017 <permission android:name="android.permission.BIND_REMOTE_DISPLAY"
Jeff Brownf3c99e82013-11-05 16:29:21 -08003018 android:protectionLevel="signature" />
3019
Jae Seod5cc4a22014-05-30 16:57:43 -07003020 <!-- Must be required by a {@link android.media.tv.TvInputService}
Svetoslav71b6ca62015-06-25 18:19:14 -07003021 to ensure that only the system can bind to it.
Peter Visontayfb5883e2017-07-10 16:26:58 +01003022 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07003023 -->
Jae Seo39570912014-02-20 18:23:25 -08003024 <permission android:name="android.permission.BIND_TV_INPUT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003025 android:protectionLevel="signature|privileged" />
Jae Seo39570912014-02-20 18:23:25 -08003026
Sujith Ramakrishnanb5b86c12016-01-28 16:53:16 -08003027 <!-- @SystemApi
3028 Must be required by a {@link com.android.media.tv.remoteprovider.TvRemoteProvider}
3029 to ensure that only the system can bind to it.
3030 <p>Protection level: signature|privileged
3031 <p>Not for use by third-party applications. </p>
3032 @hide -->
3033 <permission android:name="android.permission.BIND_TV_REMOTE_SERVICE"
3034 android:protectionLevel="signature|privileged" />
3035
3036 <!-- @SystemApi
3037 Must be required for a virtual remote controller for TV.
3038 <p>Protection level: signature|privileged
3039 <p>Not for use by third-party applications. </p>
3040 @hide -->
3041 <permission android:name="android.permission.TV_VIRTUAL_REMOTE_CONTROLLER"
3042 android:protectionLevel="signature|privileged" />
3043
Shubange41b76f2017-06-07 13:23:12 -07003044 <!-- Allows an application to change HDMI CEC active source.
3045 <p>Not for use by third-party applications.
3046 @hide -->
3047 <permission android:name="android.permission.CHANGE_HDMI_CEC_ACTIVE_SOURCE"
3048 android:protectionLevel="signature|privileged" />
3049
Jae Seo783645e2014-07-28 17:30:50 +09003050 <!-- @SystemApi Allows an application to modify parental controls
3051 <p>Not for use by third-party applications.
3052 @hide -->
3053 <permission android:name="android.permission.MODIFY_PARENTAL_CONTROLS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003054 android:protectionLevel="signature|privileged" />
Jae Seo783645e2014-07-28 17:30:50 +09003055
Shubangd3307ff2017-06-27 16:09:41 -07003056 <!-- @SystemApi Allows an application to read TvContentRatingSystemInfo
3057 <p>Not for use by third-party applications.
3058 @hide -->
3059 <permission android:name="android.permission.READ_CONTENT_RATING_SYSTEMS"
3060 android:protectionLevel="signature|privileged" />
3061
Conrad Chen558acf92017-04-05 17:31:01 -07003062 <!-- @SystemApi Allows an application to notify TV inputs by sending broadcasts.
3063 <p>Protection level: signature|privileged
3064 <p>Not for use by third-party applications.
3065 @hide -->
3066 <permission android:name="android.permission.NOTIFY_TV_INPUTS"
3067 android:protectionLevel="signature|privileged" />
3068
Jeff Brown01a500e2014-07-10 22:50:50 -07003069 <!-- Must be required by a {@link android.media.routing.MediaRouteService}
RoboErik07c70772014-03-20 13:33:52 -07003070 to ensure that only the system can interact with it.
RoboErik42ea7ee2014-05-16 16:27:35 -07003071 @hide -->
RoboErik07c70772014-03-20 13:33:52 -07003072 <permission android:name="android.permission.BIND_ROUTE_PROVIDER"
RoboErik07c70772014-03-20 13:33:52 -07003073 android:protectionLevel="signature" />
3074
Dianne Hackbornd6847842010-01-12 18:14:19 -08003075 <!-- Must be required by device administration receiver, to ensure that only the
Svetoslav71b6ca62015-06-25 18:19:14 -07003076 system can interact with it.
3077 <p>Protection level: signature
3078 -->
Dianne Hackbornd6847842010-01-12 18:14:19 -08003079 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
Dianne Hackbornd6847842010-01-12 18:14:19 -08003080 android:protectionLevel="signature" />
3081
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003082 <!-- @SystemApi Required to add or remove another application as a device admin.
Dianne Hackbornebc15ef2013-10-09 17:36:57 -07003083 <p>Not for use by third-party applications.
3084 @hide -->
Amith Yamasania418cf22013-07-19 12:39:17 -07003085 <permission android:name="android.permission.MANAGE_DEVICE_ADMINS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003086 android:protectionLevel="signature|privileged" />
Amith Yamasania418cf22013-07-19 12:39:17 -07003087
Zimuzo9f62a262018-09-03 13:47:23 +01003088 <!-- @SystemApi Allows an app to reset the device password.
3089 <p>Not for use by third-party applications.
3090 @hide -->
3091 <permission android:name="android.permission.RESET_PASSWORD"
3092 android:protectionLevel="signature|privileged" />
3093
3094 <!-- @SystemApi Allows an app to lock the device.
3095 <p>Not for use by third-party applications.
3096 @hide -->
3097 <permission android:name="android.permission.LOCK_DEVICE"
3098 android:protectionLevel="signature|privileged" />
3099
Svetoslav71b6ca62015-06-25 18:19:14 -07003100 <!-- @SystemApi Allows low-level access to setting the orientation (actually
Scott Main93e60b52013-06-10 11:05:55 -07003101 rotation) of the screen.
Svetoslav71b6ca62015-06-25 18:19:14 -07003102 <p>Not for use by third-party applications.
3103 @hide
3104 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003105 <permission android:name="android.permission.SET_ORIENTATION"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003106 android:protectionLevel="signature" />
3107
Svetoslav71b6ca62015-06-25 18:19:14 -07003108 <!-- @SystemApi Allows low-level access to setting the pointer speed.
3109 <p>Not for use by third-party applications.
3110 @hide
3111 -->
Jeff Brown1a84fd12011-06-02 01:26:32 -07003112 <permission android:name="android.permission.SET_POINTER_SPEED"
Jeff Brown1a84fd12011-06-02 01:26:32 -07003113 android:protectionLevel="signature" />
3114
Jason Gerecked6396d62014-01-27 18:30:37 -08003115 <!-- Allows low-level access to setting input device calibration.
3116 <p>Not for use by normal applications.
3117 @hide -->
3118 <permission android:name="android.permission.SET_INPUT_CALIBRATION"
Jason Gerecked6396d62014-01-27 18:30:37 -08003119 android:protectionLevel="signature" />
3120
Jeff Brown9f25b7f2012-04-10 14:30:49 -07003121 <!-- Allows low-level access to setting the keyboard layout.
Scott Main93e60b52013-06-10 11:05:55 -07003122 <p>Not for use by third-party applications.
Jeff Brown507f5582012-05-07 19:06:06 -07003123 @hide -->
Jeff Brown9f25b7f2012-04-10 14:30:49 -07003124 <permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
Jeff Brown9f25b7f2012-04-10 14:30:49 -07003125 android:protectionLevel="signature" />
3126
Michael Wright9209c9c2015-09-03 17:57:01 +01003127 <!-- Allows an application to query tablet mode state and monitor changes
3128 in it.
Michael Wright39e5e942015-08-19 22:52:47 +01003129 <p>Not for use by third-party applications.
3130 @hide -->
Michael Wright9209c9c2015-09-03 17:57:01 +01003131 <permission android:name="android.permission.TABLET_MODE"
Michael Wright39e5e942015-08-19 22:52:47 +01003132 android:protectionLevel="signature" />
3133
Svet Ganov86877e42015-05-28 08:19:48 -07003134 <!-- Allows an application to request installing packages. Apps
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003135 targeting APIs greater than 25 must hold this permission in
Svetoslav71b6ca62015-06-25 18:19:14 -07003136 order to use {@link android.content.Intent#ACTION_INSTALL_PACKAGE}.
Suprabh Shuklaaef25132017-01-23 18:09:03 -08003137 <p>Protection level: signature
Svetoslav71b6ca62015-06-25 18:19:14 -07003138 -->
Svet Ganov86877e42015-05-28 08:19:48 -07003139 <permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"
3140 android:label="@string/permlab_requestInstallPackages"
3141 android:description="@string/permdesc_requestInstallPackages"
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003142 android:protectionLevel="signature|appop" />
Svet Ganov86877e42015-05-28 08:19:48 -07003143
Svet Ganov67882122016-12-11 16:36:34 -08003144 <!-- Allows an application to request deleting packages. Apps
Philip P. Moltmannd9bb39a2017-09-05 12:41:15 -07003145 targeting APIs {@link android.os.Build.VERSION_CODES#P} or greater must hold this
3146 permission in order to use {@link android.content.Intent#ACTION_UNINSTALL_PACKAGE} or
3147 {@link android.content.pm.PackageInstaller#uninstall}.
Svet Ganov67882122016-12-11 16:36:34 -08003148 <p>Protection level: normal
3149 -->
3150 <permission android:name="android.permission.REQUEST_DELETE_PACKAGES"
3151 android:label="@string/permlab_requestDeletePackages"
3152 android:description="@string/permdesc_requestDeletePackages"
3153 android:protectionLevel="normal" />
3154
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003155 <!-- @SystemApi Allows an application to install packages.
Scott Main93e60b52013-06-10 11:05:55 -07003156 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003157 <permission android:name="android.permission.INSTALL_PACKAGES"
Chad Brubakercfdc1ee2017-08-18 12:52:47 -07003158 android:protectionLevel="signature|privileged" />
3159
3160 <!-- @SystemApi Allows an application to install self updates. This is a limited version
3161 of {@link android.Manifest.permission#INSTALL_PACKAGES}.
3162 <p>Not for use by third-party applications.
3163 @hide
3164 -->
3165 <permission android:name="android.permission.INSTALL_SELF_UPDATES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003166 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003167
Chad Brubakeradcb5222018-01-11 14:22:15 -08003168 <!-- @SystemApi Allows an application to install updates. This is a limited version
3169 of {@link android.Manifest.permission#INSTALL_PACKAGES}.
3170 <p>Not for use by third-party applications.
3171 @hide
3172 -->
3173 <permission android:name="android.permission.INSTALL_PACKAGE_UPDATES"
3174 android:protectionLevel="signature|privileged" />
3175
Rhed Jaocd47c262018-06-13 11:16:16 +08003176 <!-- Allows an application to install existing system packages. This is a limited
3177 version of {@link android.Manifest.permission#INSTALL_PACKAGES}.
3178 <p>Not for use by third-party applications.
3179 TODO(b/80204953): remove this permission once we have a long-term solution.
3180 @hide
3181 -->
3182 <permission android:name="com.android.permission.INSTALL_EXISTING_PACKAGES"
3183 android:protectionLevel="signature|privileged" />
3184
Svetoslav71b6ca62015-06-25 18:19:14 -07003185 <!-- @SystemApi Allows an application to clear user data.
3186 <p>Not for use by third-party applications
3187 @hide
3188 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003189 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
Svetoslav3e7d9772015-07-06 18:31:23 -07003190 android:protectionLevel="signature|installer" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003191
Felipe Lemef3fa0f82016-01-07 12:08:19 -08003192 <!-- @hide Allows an application to get the URI permissions
3193 granted to another application.
3194 <p>Not for use by third-party applications
3195 -->
3196 <permission android:name="android.permission.GET_APP_GRANTED_URI_PERMISSIONS"
3197 android:protectionLevel="signature" />
3198
3199 <!-- @hide Allows an application to clear the URI permissions
3200 granted to another application.
3201 <p>Not for use by third-party applications
3202 -->
3203 <permission
3204 android:name="android.permission.CLEAR_APP_GRANTED_URI_PERMISSIONS"
3205 android:protectionLevel="signature" />
3206
Felipe Leme667baa52018-01-09 17:29:24 -08003207 <!-- @hide
3208 Allows an application to change the status of Scoped Access Directory requests granted or
3209 rejected by the user.
3210 <p>This permission should <em>only</em> be requested by the platform
3211 settings app. This permission cannot be granted to third-party apps.
3212 <p>Protection level: signature
3213 -->
Felipe Leme988234a2018-02-14 12:00:29 -08003214 <permission
3215 android:name="android.permission.MANAGE_SCOPED_ACCESS_DIRECTORY_PERMISSIONS"
3216 android:protectionLevel="signature" />
3217
3218 <!-- @hide
3219 Allows an application to change the status of a persistable URI permission granted
3220 to another application.
3221 <p>This permission should <em>only</em> be requested by the platform
3222 settings app. This permission cannot be granted to third-party apps.
3223 <p>Protection level: signature
3224 -->
3225 <permission android:name="android.permission.FORCE_PERSISTABLE_URI_PERMISSIONS"
Felipe Leme667baa52018-01-09 17:29:24 -08003226 android:protectionLevel="signature" />
3227
Dianne Hackborn1b794fa2018-02-09 14:12:56 -08003228 <!-- @SystemApi Old permission for deleting an app's cache files, no longer used,
3229 but signals for us to quietly ignore calls instead of throwing an exception. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003230 <permission android:name="android.permission.DELETE_CACHE_FILES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003231 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003232
Dianne Hackborn1b794fa2018-02-09 14:12:56 -08003233 <!-- Allows an application to delete cache files.
3234 @hide -->
3235 <permission android:name="android.permission.INTERNAL_DELETE_CACHE_FILES"
3236 android:protectionLevel="signature" />
3237
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003238 <!-- @SystemApi Allows an application to delete packages.
Sudheer Shankaeaa6c6b2016-05-04 15:03:30 -07003239 <p>Not for use by third-party applications.
3240 <p>Starting in {@link android.os.Build.VERSION_CODES#N}, user confirmation is requested
3241 when the application deleting the package is not the same application that installed the
3242 package. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003243 <permission android:name="android.permission.DELETE_PACKAGES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003244 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003245
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003246 <!-- @SystemApi Allows an application to move location of installed package.
Jeff Brownec7c78f2010-03-30 23:37:25 -07003247 @hide -->
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08003248 <permission android:name="android.permission.MOVE_PACKAGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003249 android:protectionLevel="signature|privileged" />
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -08003250
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003251 <!-- @SystemApi Allows an application to change whether an application component (other than its own) is
Scott Main93e60b52013-06-10 11:05:55 -07003252 enabled or not.
3253 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003254 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003255 android:protectionLevel="signature|privileged" />
Dianne Hackborne639da72012-02-21 15:11:13 -08003256
Svet Ganovae0e03a2016-02-25 18:22:10 -08003257 <!-- @SystemApi Allows an application to grant specific permissions.
Svet Ganov7121e182015-07-13 22:38:12 -07003258 @hide -->
3259 <permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS"
Svetoslav7bddf5a2015-10-29 17:00:06 -07003260 android:protectionLevel="signature|installer|verifier" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003261
Svet Ganovae0e03a2016-02-25 18:22:10 -08003262 <!-- @SystemApi Allows an app that has this permission and the permissions to install packages
Svet Ganov7121e182015-07-13 22:38:12 -07003263 to request certain runtime permissions to be granted at installation.
Svet Ganovae0e03a2016-02-25 18:22:10 -08003264 @hide -->
Svet Ganov7121e182015-07-13 22:38:12 -07003265 <permission android:name="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS"
3266 android:protectionLevel="signature|installer|verifier" />
3267
Svet Ganovae0e03a2016-02-25 18:22:10 -08003268 <!-- @SystemApi Allows an application to revoke specific permissions.
3269 @hide -->
Svet Ganov7121e182015-07-13 22:38:12 -07003270 <permission android:name="android.permission.REVOKE_RUNTIME_PERMISSIONS"
3271 android:protectionLevel="signature|installer|verifier" />
3272
Svetoslavf7c06eb2015-06-10 18:43:22 -07003273 <!-- @hide Allows an application to observe permission changes. -->
3274 <permission android:name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003275 android:protectionLevel="signature|privileged" />
Svetoslavf7c06eb2015-06-10 18:43:22 -07003276
Svetoslav71b6ca62015-06-25 18:19:14 -07003277 <!-- @SystemApi Allows an application to use SurfaceFlinger's low level features.
3278 <p>Not for use by third-party applications.
3279 @hide
3280 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003281 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003282 android:protectionLevel="signature" />
3283
Nandana Duttcaa42032018-08-08 09:35:59 +01003284 <!-- Allows an application to take screen shots and more generally
Scott Main93e60b52013-06-10 11:05:55 -07003285 get access to the frame buffer data.
Nandana Duttcaa42032018-08-08 09:35:59 +01003286 <p>Not for use by third-party applications.
3287 @hide
3288 @removed -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003289 <permission android:name="android.permission.READ_FRAME_BUFFER"
Nandana Duttcaa42032018-08-08 09:35:59 +01003290 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003291
Jeff Brown6c1c0b62013-07-12 16:56:34 -07003292 <!-- Allows an application to use InputFlinger's low level features.
Jeff Brown465c5de2014-06-09 18:34:20 -07003293 @hide -->
Jeff Brown6c1c0b62013-07-12 16:56:34 -07003294 <permission android:name="android.permission.ACCESS_INPUT_FLINGER"
Jeff Brown6c1c0b62013-07-12 16:56:34 -07003295 android:protectionLevel="signature" />
3296
Siarhei Vishniakoua7f99b52017-03-21 17:39:40 -07003297 <!-- Allows an application to disable/enable input devices.
3298 Could be used to prevent unwanted touch events
3299 on a touchscreen, for example during swimming or rain.
3300 @hide -->
3301 <permission android:name="android.permission.DISABLE_INPUT_DEVICE"
3302 android:protectionLevel="signature" />
3303
Jeff Brown4b71e4e2012-09-07 17:41:02 -07003304 <!-- Allows an application to configure and connect to Wifi displays
3305 @hide -->
3306 <permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY"
Jeff Brown4b71e4e2012-09-07 17:41:02 -07003307 android:protectionLevel="signature" />
3308
3309 <!-- Allows an application to control low-level features of Wifi displays
3310 such as opening an RTSP socket. This permission should only be used
3311 by the display manager.
3312 @hide -->
3313 <permission android:name="android.permission.CONTROL_WIFI_DISPLAY"
Jeff Brown4b71e4e2012-09-07 17:41:02 -07003314 android:protectionLevel="signature" />
3315
Michael Wright1c9977b2016-07-12 13:30:10 -07003316 <!-- Allows an application to control the color modes set for displays system-wide.
Michael Wright58e829f2015-09-15 00:13:26 +01003317 <p>Not for use by third-party applications.</p>
3318 @hide -->
Michael Wright1c9977b2016-07-12 13:30:10 -07003319 <permission android:name="android.permission.CONFIGURE_DISPLAY_COLOR_MODE"
Michael Wright58e829f2015-09-15 00:13:26 +01003320 android:protectionLevel="signature" />
3321
Bryan Mawhinney462e29d2018-03-22 15:52:41 +00003322 <!-- Allows an application to control the color saturation of the display.
3323 @hide
3324 @SystemApi -->
3325 <permission android:name="android.permission.CONTROL_DISPLAY_SATURATION"
3326 android:protectionLevel="signature|privileged" />
3327
Kenny Guy22bd0442017-10-26 00:15:54 +01003328 <!-- Allows an application to collect usage infomation about brightness slider changes.
3329 <p>Not for use by third-party applications.</p>
Kenny Guy0ff44892018-01-10 14:06:42 +00003330 @hide
Michael Wright22db4942018-03-09 23:10:20 +00003331 @SystemApi
3332 @TestApi -->
Kenny Guy22bd0442017-10-26 00:15:54 +01003333 <permission android:name="android.permission.BRIGHTNESS_SLIDER_USAGE"
Kenny Guy0ff44892018-01-10 14:06:42 +00003334 android:protectionLevel="signature|privileged|development" />
Kenny Guy22bd0442017-10-26 00:15:54 +01003335
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00003336 <!-- Allows an application to collect ambient light stats.
3337 <p>Not for use by third party applications.</p>
Peeyush Agarwal90eabcc2018-03-01 12:07:59 +00003338 @hide
3339 @SystemApi -->
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00003340 <permission android:name="android.permission.ACCESS_AMBIENT_LIGHT_STATS"
3341 android:protectionLevel="signature|privileged|development" />
3342
Michael Wrighteef0e132017-11-21 17:57:52 +00003343 <!-- Allows an application to modify the display brightness configuration
Kenny Guy0ff44892018-01-10 14:06:42 +00003344 @hide
Michael Wright22db4942018-03-09 23:10:20 +00003345 @SystemApi
3346 @TestApi -->
Michael Wrighteef0e132017-11-21 17:57:52 +00003347 <permission android:name="android.permission.CONFIGURE_DISPLAY_BRIGHTNESS"
3348 android:protectionLevel="signature|privileged|development" />
3349
Michael Wrightd8460232018-01-16 18:04:59 +00003350 <!-- Allows an application to control the system's display brightness
3351 @hide -->
3352 <permission android:name="android.permission.CONTROL_DISPLAY_BRIGHTNESS"
3353 android:protectionLevel="signature" />
3354
Jeff Davidsonbc19c182014-11-11 13:20:01 -08003355 <!-- @SystemApi Allows an application to control VPN.
3356 <p>Not for use by third-party applications.</p>
3357 @hide -->
3358 <permission android:name="android.permission.CONTROL_VPN"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003359 android:protectionLevel="signature|privileged" />
Jeff Davidsonbc19c182014-11-11 13:20:01 -08003360 <uses-permission android:name="android.permission.CONTROL_VPN" />
3361
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003362 <!-- @SystemApi Allows an application to capture audio output.
Jeff Brown7d00aff2013-08-02 19:03:49 -07003363 <p>Not for use by third-party applications.</p> -->
3364 <permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003365 android:protectionLevel="signature|privileged" />
Jeff Brown7d00aff2013-08-02 19:03:49 -07003366
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003367 <!-- @SystemApi Allows an application to capture audio for hotword detection.
Eric Laurent357263d2013-09-09 10:31:59 -07003368 <p>Not for use by third-party applications.</p>
3369 @hide -->
3370 <permission android:name="android.permission.CAPTURE_AUDIO_HOTWORD"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003371 android:protectionLevel="signature|privileged" />
Eric Laurent357263d2013-09-09 10:31:59 -07003372
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003373 <!-- @SystemApi Allows an application to modify audio routing and override policy decisions.
Eric Laurent01fae552014-05-29 14:42:54 -07003374 <p>Not for use by third-party applications.</p>
3375 @hide -->
3376 <permission android:name="android.permission.MODIFY_AUDIO_ROUTING"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003377 android:protectionLevel="signature|privileged" />
Eric Laurent01fae552014-05-29 14:42:54 -07003378
Ari Hausman-Cohenf2783af2018-01-11 14:38:35 -08003379 <!-- Allows an application to modify what effects are applied to all audio
3380 (matching certain criteria) from any application.
3381 <p>Not for use by third-party applications.</p>
3382 @hide -->
3383 <permission android:name="android.permission.MODIFY_DEFAULT_AUDIO_EFFECTS"
3384 android:protectionLevel="signature|privileged" />
3385
Nandana Dutta69e3672018-08-15 11:48:03 +01003386 <!-- Allows an application to capture video output.
3387 <p>Not for use by third-party applications.</p>
3388 @hide
3389 @removed -->
Jeff Brown7d00aff2013-08-02 19:03:49 -07003390 <permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT"
Zimuzo41196232018-09-04 21:16:07 +01003391 android:protectionLevel="signature|privileged" />
Jeff Brown7d00aff2013-08-02 19:03:49 -07003392
Nandana Dutta69e3672018-08-15 11:48:03 +01003393 <!-- Allows an application to capture secure video output.
3394 <p>Not for use by third-party applications.</p>
3395 @hide
3396 @removed -->
Jeff Brown7d00aff2013-08-02 19:03:49 -07003397 <permission android:name="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT"
Nandana Duttf806e332018-09-11 14:18:42 +01003398 android:protectionLevel="signature|privileged" />
Jeff Brown7d00aff2013-08-02 19:03:49 -07003399
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003400 <!-- @SystemApi Allows an application to know what content is playing and control its playback.
Jean-Michel Trivi7ddd2262013-09-01 18:06:45 -07003401 <p>Not for use by third-party applications due to privacy of media consumption</p> -->
3402 <permission android:name="android.permission.MEDIA_CONTENT_CONTROL"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003403 android:protectionLevel="signature|privileged" />
Jean-Michel Trivi7ddd2262013-09-01 18:06:45 -07003404
Jaewan Kim50269362016-12-23 11:22:02 +09003405 <!-- @SystemApi @hide Allows an application to set the volume key long-press listener.
3406 <p>When it's set, the application will receive the volume key long-press event
3407 instead of changing volume.</p>
3408 <p>Not for use by third-party applications</p> -->
3409 <permission android:name="android.permission.SET_VOLUME_KEY_LONG_PRESS_LISTENER"
3410 android:protectionLevel="signature|privileged|development" />
3411
Jaewan Kim6e2b01c2017-01-19 16:33:14 -08003412 <!-- @SystemApi @hide Allows an application to set media key event listener.
3413 <p>When it's set, the application will receive the media key event before
3414 any other media sessions. If the event is handled by the listener, other sessions
3415 cannot get the event.</p>
3416 <p>Not for use by third-party applications</p> -->
3417 <permission android:name="android.permission.SET_MEDIA_KEY_LISTENER"
3418 android:protectionLevel="signature|privileged|development" />
3419
Svetoslav71b6ca62015-06-25 18:19:14 -07003420 <!-- @SystemApi Required to be able to disable the device (very dangerous!).
3421 <p>Not for use by third-party applications.
3422 @hide
3423 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003424 <permission android:name="android.permission.BRICK"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003425 android:protectionLevel="signature" />
3426
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003427 <!-- @SystemApi Required to be able to reboot the device.
Scott Main93e60b52013-06-10 11:05:55 -07003428 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003429 <permission android:name="android.permission.REBOOT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003430 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003431
Svetoslav71b6ca62015-06-25 18:19:14 -07003432 <!-- @SystemApi Allows low-level access to power management.
3433 <p>Not for use by third-party applications.
3434 @hide
3435 -->
3436 <permission android:name="android.permission.DEVICE_POWER"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003437 android:protectionLevel="signature" />
3438
Salvador Martineza80bbab2018-09-24 10:36:11 -07003439 <!-- Allows toggling battery saver on the system.
3440 Superseded by DEVICE_POWER permission. @hide @SystemApi
3441 -->
3442 <permission android:name="android.permission.POWER_SAVER"
3443 android:protectionLevel="signature|privileged" />
3444
Jeff Brown0a571122014-08-21 21:50:43 -07003445 <!-- Allows access to the PowerManager.userActivity function.
3446 <p>Not for use by third-party applications. @hide @SystemApi -->
3447 <permission android:name="android.permission.USER_ACTIVITY"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003448 android:protectionLevel="signature|privileged" />
Jeff Brown0a571122014-08-21 21:50:43 -07003449
Dianne Hackborn8832c182012-09-17 17:20:24 -07003450 <!-- @hide Allows low-level access to tun tap driver -->
fredc0f420372012-04-12 00:02:00 -07003451 <permission android:name="android.permission.NET_TUNNELING"
fredc0f420372012-04-12 00:02:00 -07003452 android:protectionLevel="signature" />
3453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003454 <!-- Run as a manufacturer test application, running as the root user.
Scott Main93e60b52013-06-10 11:05:55 -07003455 Only available when the device is running in manufacturer test mode.
Svetoslav71b6ca62015-06-25 18:19:14 -07003456 <p>Not for use by third-party applications.
3457 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003458 <permission android:name="android.permission.FACTORY_TEST"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003459 android:protectionLevel="signature" />
3460
3461 <!-- Allows an application to broadcast a notification that an application
Scott Main93e60b52013-06-10 11:05:55 -07003462 package has been removed.
Svetoslav71b6ca62015-06-25 18:19:14 -07003463 <p>Not for use by third-party applications.
3464 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003465 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003466 android:protectionLevel="signature" />
3467
Scott Main93e60b52013-06-10 11:05:55 -07003468 <!-- Allows an application to broadcast an SMS receipt notification.
Svetoslav71b6ca62015-06-25 18:19:14 -07003469 <p>Not for use by third-party applications.
3470 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003471 <permission android:name="android.permission.BROADCAST_SMS"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003472 android:protectionLevel="signature" />
3473
Scott Main93e60b52013-06-10 11:05:55 -07003474 <!-- Allows an application to broadcast a WAP PUSH receipt notification.
Svetoslav71b6ca62015-06-25 18:19:14 -07003475 <p>Not for use by third-party applications.
3476 -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003477 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003478 android:protectionLevel="signature" />
3479
Jeff Davidson16197792014-11-03 17:39:54 -08003480 <!-- @SystemApi Allows an application to broadcast privileged networking requests.
Jeremy Joslin7231d442016-12-21 14:16:19 -08003481 <p>Not for use by third-party applications.
3482 @hide
3483 @deprecated Use {@link android.Manifest.permission#REQUEST_NETWORK_SCORES} instead
3484 -->
Jeff Davidson16197792014-11-03 17:39:54 -08003485 <permission android:name="android.permission.BROADCAST_NETWORK_PRIVILEGED"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003486 android:protectionLevel="signature|privileged" />
Jeff Davidsonb51e0a62014-04-09 12:38:15 -07003487
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003488 <!-- @SystemApi Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003489 <permission android:name="android.permission.MASTER_CLEAR"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003490 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003491
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003492 <!-- @SystemApi Allows an application to call any phone number, including emergency
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003493 numbers, without going through the Dialer user interface for the user
Scott Main93e60b52013-06-10 11:05:55 -07003494 to confirm the call being placed.
3495 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003496 <permission android:name="android.permission.CALL_PRIVILEGED"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003497 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003498
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003499 <!-- @SystemApi Allows an application to perform CDMA OTA provisioning @hide -->
Jim Miller767be5f2009-08-25 19:33:57 -07003500 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003501 android:protectionLevel="signature|privileged" />
Jim Miller767be5f2009-08-25 19:33:57 -07003502
Santos Cordon15a13782015-03-31 18:32:31 -07003503 <!-- @SystemApi Allows an application to perform SIM Activation @hide -->
3504 <permission android:name="android.permission.PERFORM_SIM_ACTIVATION"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003505 android:protectionLevel="signature|privileged" />
Santos Cordon15a13782015-03-31 18:32:31 -07003506
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003507 <!-- @SystemApi Allows enabling/disabling location update notifications from
Scott Main93e60b52013-06-10 11:05:55 -07003508 the radio.
3509 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003510 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003511 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003512
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003513 <!-- @SystemApi Allows read/write access to the "properties" table in the checkin
Scott Main93e60b52013-06-10 11:05:55 -07003514 database, to change values that get uploaded.
3515 <p>Not for use by third-party applications. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003516 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003517 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003518
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003519 <!-- @SystemApi Allows an application to collect component usage
Zoltan Szatmary-Ban9c5dfa52015-02-23 17:20:20 +00003520 statistics
Zoltan Szatmary-Ban763e1702015-05-06 10:52:14 +01003521 <p>Declaring the permission implies intention to use the API and the user of the
3522 device can grant permission through the Settings application. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003523 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003524 android:protectionLevel="signature|privileged|development|appop" />
Adam Powell09a65602014-07-20 16:23:14 -07003525 <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003526
Amith Yamasanibc813eb2018-03-20 19:37:46 -07003527 <!-- @hide @SystemApi Allows an application to observe usage time of apps. The app can register
3528 for callbacks when apps reach a certain usage time limit, etc. -->
3529 <permission android:name="android.permission.OBSERVE_APP_USAGE"
3530 android:protectionLevel="signature|privileged" />
3531
Philip P. Moltmann33115152018-04-11 13:39:36 -07003532 <!-- @hide @TestApi @SystemApi Allows an application to change the app idle state of an app.
Amith Yamasanicf768722015-04-23 20:36:41 -07003533 <p>Not for use by third-party applications. -->
3534 <permission android:name="android.permission.CHANGE_APP_IDLE_STATE"
Amith Yamasani4470ab92017-10-31 13:29:00 -07003535 android:protectionLevel="signature|privileged" />
Amith Yamasanicf768722015-04-23 20:36:41 -07003536
Amith Yamasaniaf575b92015-05-29 15:35:26 -07003537 <!-- @hide @SystemApi Allows an application to temporarily whitelist an inactive app to
3538 access the network and acquire wakelocks.
3539 <p>Not for use by third-party applications. -->
3540 <permission android:name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03003541 android:protectionLevel="signature|privileged" />
Amith Yamasaniaf575b92015-05-29 15:35:26 -07003542
Dianne Hackbornc7b57b12015-08-10 14:52:52 -07003543 <!-- Permission an application must hold in order to use
3544 {@link android.provider.Settings#ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS}.
3545 This is a normal permission: an app requesting it will always be granted the
3546 permission, without the user needing to approve or see it. -->
3547 <permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"
Felipe Leme965f4262016-12-05 10:51:30 -08003548 android:label="@string/permlab_requestIgnoreBatteryOptimizations"
3549 android:description="@string/permdesc_requestIgnoreBatteryOptimizations"
Dianne Hackbornc7b57b12015-08-10 14:52:52 -07003550 android:protectionLevel="normal" />
3551
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003552 <!-- @SystemApi Allows an application to collect battery statistics -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003553 <permission android:name="android.permission.BATTERY_STATS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003554 android:protectionLevel="signature|privileged|development" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003555
Bookatz94726412017-08-31 09:26:15 -07003556 <!--Allows an application to manage statscompanion.
3557 <p>Not for use by third-party applications.
3558 @hide -->
3559 <permission android:name="android.permission.STATSCOMPANION"
3560 android:protectionLevel="signature" />
3561
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003562 <!-- @SystemApi Allows an application to control the backup and restore process.
Scott Main93e60b52013-06-10 11:05:55 -07003563 <p>Not for use by third-party applications.
Christopher Tate181fafa2009-05-14 11:12:14 -07003564 @hide pending API council -->
3565 <permission android:name="android.permission.BACKUP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003566 android:protectionLevel="signature|privileged" />
Christopher Tate181fafa2009-05-14 11:12:14 -07003567
Dmitry Dementyev59ca9b52018-03-22 09:32:13 -07003568 <!-- @SystemApi Allows application to manage
3569 {@link android.security.keystore.recovery.RecoveryController}.
3570 <p>Not for use by third-party applications.
Dmitry Dementyevf9a89c12017-12-11 11:53:52 -08003571 @hide -->
3572 <permission android:name="android.permission.RECOVER_KEYSTORE"
3573 android:protectionLevel="signature|privileged" />
3574
Christopher Tate4a627c72011-04-01 14:43:32 -07003575 <!-- Allows a package to launch the secure full-backup confirmation UI.
3576 ONLY the system process may hold this permission.
3577 @hide -->
3578 <permission android:name="android.permission.CONFIRM_FULL_BACKUP"
Christopher Tate4a627c72011-04-01 14:43:32 -07003579 android:protectionLevel="signature" />
3580
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003581 <!-- @SystemApi Must be required by a {@link android.widget.RemoteViewsService},
Winson Chung81f39eb2011-01-11 18:05:01 -08003582 to ensure that only the system can bind to it. -->
3583 <permission android:name="android.permission.BIND_REMOTEVIEWS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003584 android:protectionLevel="signature|privileged" />
Winson Chung81f39eb2011-01-11 18:05:01 -08003585
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003586 <!-- @SystemApi Allows an application to tell the AppWidget service which application
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003587 can access AppWidget's data. The normal user flow is that a user
3588 picks an AppWidget to go into a particular host, thereby giving that
3589 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003590 An application that has this permission should honor that contract.
Scott Main93e60b52013-06-10 11:05:55 -07003591 <p>Not for use by third-party applications. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003592 <permission android:name="android.permission.BIND_APPWIDGET"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003593 android:protectionLevel="signature|privileged" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003594
Jason Monkf7624962018-01-17 17:50:29 -05003595 <!-- @hide Allows sysui to manage user grants of slice permissions. -->
3596 <permission android:name="android.permission.MANAGE_SLICE_PERMISSIONS"
3597 android:protectionLevel="signature" />
3598
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003599 <!-- @SystemApi Private permission, to restrict who can bring up a dialog to add a new
Michael Jurkafc753c02012-10-30 18:30:52 -07003600 keyguard widget
3601 @hide -->
3602 <permission android:name="android.permission.BIND_KEYGUARD_APPWIDGET"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003603 android:protectionLevel="signature|privileged" />
Michael Jurkafc753c02012-10-30 18:30:52 -07003604
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003605 <!-- @SystemApi Internal permission allowing an application to query/set which
Michael Jurka61a5b012012-04-13 10:39:45 -07003606 applications can bind AppWidgets.
3607 @hide -->
3608 <permission android:name="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003609 android:protectionLevel="signature|privileged" />
Michael Jurka61a5b012012-04-13 10:39:45 -07003610
Scott Main93e60b52013-06-10 11:05:55 -07003611 <!-- Allows applications to change the background data setting.
3612 <p>Not for use by third-party applications.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003613 @hide pending API council -->
3614 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
Svetoslav61a4dd52015-04-09 10:17:40 -07003615 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003616
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003617 <!-- @SystemApi This permission can be used on content providers to allow the global
Dianne Hackborn2af632f2009-07-08 14:56:37 -07003618 search system to access their data. Typically it used when the
3619 provider has some permissions protecting it (which global search
3620 would not be expected to hold), and added as a read-only permission
3621 to the path in the provider where global search queries are
3622 performed. This permission can not be held by regular applications;
3623 it is used by applications to protect themselves from everyone else
3624 besides global search. -->
3625 <permission android:name="android.permission.GLOBAL_SEARCH"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003626 android:protectionLevel="signature|privileged" />
Dianne Hackborn2af632f2009-07-08 14:56:37 -07003627
3628 <!-- Internal permission protecting access to the global search
3629 system: ensures that only the system can access the provider
3630 to perform queries (since this otherwise provides unrestricted
3631 access to a variety of content providers), and to write the
3632 search statistics (to keep applications from gaming the source
3633 ranking).
3634 @hide -->
3635 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
Dianne Hackborn2af632f2009-07-08 14:56:37 -07003636 android:protectionLevel="signature" />
3637
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003638 <!-- @SystemApi Internal permission to allows an application to read indexable data.
Fabrice Di Megliob49995d2014-03-14 19:06:20 -07003639 @hide -->
3640 <permission android:name="android.permission.READ_SEARCH_INDEXABLES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003641 android:protectionLevel="signature|privileged" />
Fabrice Di Megliob49995d2014-03-14 19:06:20 -07003642
Fan Zhang723bf372017-08-25 17:22:31 -07003643 <!-- @SystemApi Internal permission to allows an application to bind to suggestion service.
3644 @hide -->
3645 <permission android:name="android.permission.BIND_SETTINGS_SUGGESTIONS_SERVICE"
3646 android:protectionLevel="signature" />
3647
Sunny Shaoa9df0282018-07-31 15:30:44 +08003648 <!-- @hide Internal permission to allows an application to access card content provider. -->
3649 <permission android:name="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA"
3650 android:protectionLevel="signature|privileged" />
3651
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003652 <!-- @SystemApi Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07003653 @hide XXX Change to signature once the picker is moved to its
3654 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07003655 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003656 android:protectionLevel="signature|privileged" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07003657
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003658 <!-- @SystemApi Allows applications to read dream settings and dream state.
John Spurlockf4f6b4c2012-08-25 12:08:03 -04003659 @hide -->
3660 <permission android:name="android.permission.READ_DREAM_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003661 android:protectionLevel="signature|privileged" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -04003662
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003663 <!-- @SystemApi Allows applications to write dream settings, and start or stop dreaming.
John Spurlockf4f6b4c2012-08-25 12:08:03 -04003664 @hide -->
3665 <permission android:name="android.permission.WRITE_DREAM_STATE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003666 android:protectionLevel="signature|privileged" />
John Spurlockf4f6b4c2012-08-25 12:08:03 -04003667
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003668 <!-- @SystemApi Allow an application to read and write the cache partition.
Jeff Brownec7c78f2010-03-30 23:37:25 -07003669 @hide -->
Doug Zongker6e99b7a2010-01-06 15:02:52 -08003670 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003671 android:protectionLevel="signature|privileged" />
Doug Zongker6e99b7a2010-01-06 15:02:52 -08003672
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08003673 <!-- Must be required by default container service so that only
3674 the system can bind to it and use it to copy
3675 protected data to secure containers or files
3676 accessible to the system.
3677 @hide -->
3678 <permission android:name="android.permission.COPY_PROTECTED_DATA"
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08003679 android:protectionLevel="signature" />
3680
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003681 <!-- @SystemApi Internal permission protecting access to the encryption methods
Jason parks8888c592011-01-20 22:46:41 -06003682 @hide
3683 -->
3684 <permission android:name="android.permission.CRYPT_KEEPER"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003685 android:protectionLevel="signature|privileged" />
Jason parks8888c592011-01-20 22:46:41 -06003686
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003687 <!-- @SystemApi Allows an application to read historical network usage for
Jeff Sharkey21c9c452011-06-07 12:26:43 -07003688 specific networks and applications. @hide -->
3689 <permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003690 android:protectionLevel="signature|privileged" />
Jeff Sharkey21c9c452011-06-07 12:26:43 -07003691
3692 <!-- Allows an application to manage network policies (such as warning and disable
3693 limits) and to define application-specific rules. @hide -->
3694 <permission android:name="android.permission.MANAGE_NETWORK_POLICY"
Jeff Sharkey21c9c452011-06-07 12:26:43 -07003695 android:protectionLevel="signature" />
Jason parks8888c592011-01-20 22:46:41 -06003696
Jeff Sharkey9f09e6a72017-06-26 11:24:47 -06003697 <!-- @SystemApi @hide @deprecated use UPDATE_DEVICE_STATS instead -->
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07003698 <permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003699 android:protectionLevel="signature|privileged" />
Jeff Sharkey9e18fd12011-05-02 17:51:29 -07003700
Jeff Sharkeyb74799882017-07-28 16:55:41 -06003701 <!-- @SystemApi @hide Allows an application to manage carrier subscription plans. -->
3702 <permission android:name="android.permission.MANAGE_SUBSCRIPTION_PLANS"
3703 android:protectionLevel="signature|privileged" />
3704
Tom Taylorb0381682011-08-11 14:27:25 -07003705 <!-- C2DM permission.
Costin Manolache63cfebf2010-02-04 16:52:34 -08003706 @hide Used internally.
3707 -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07003708 <permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"
Costin Manolache63cfebf2010-02-04 16:52:34 -08003709 android:protectionLevel="signature" />
Costin Manolache8d83f9e2010-05-12 16:04:10 -07003710 <uses-permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"/>
Costin Manolache63cfebf2010-02-04 16:52:34 -08003711
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003712 <!-- @SystemApi @hide Package verifier needs to have this permission before the PackageManager will
Kenny Root5ab21572011-07-27 11:11:19 -07003713 trust it to verify packages.
Kenny Root5ab21572011-07-27 11:11:19 -07003714 -->
3715 <permission android:name="android.permission.PACKAGE_VERIFICATION_AGENT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003716 android:protectionLevel="signature|privileged" />
Kenny Root5ab21572011-07-27 11:11:19 -07003717
3718 <!-- Must be required by package verifier receiver, to ensure that only the
3719 system can interact with it.
3720 @hide
3721 -->
3722 <permission android:name="android.permission.BIND_PACKAGE_VERIFIER"
Kenny Root5ab21572011-07-27 11:11:19 -07003723 android:protectionLevel="signature" />
3724
Ben Gruver1ab3d6e2017-12-07 13:45:08 -08003725 <!-- @SystemApi @hide Allows an application to mark other applications as harmful -->
3726 <permission android:name="android.permission.SET_HARMFUL_APP_WARNINGS"
3727 android:protectionLevel="signature|verifier" />
3728
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08003729 <!-- @SystemApi @hide Intent filter verifier needs to have this permission before the
3730 PackageManager will trust it to verify intent filters.
3731 -->
3732 <permission android:name="android.permission.INTENT_FILTER_VERIFICATION_AGENT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003733 android:protectionLevel="signature|privileged" />
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08003734
3735 <!-- Must be required by intent filter verifier receiver, to ensure that only the
3736 system can interact with it.
3737 @hide
3738 -->
3739 <permission android:name="android.permission.BIND_INTENT_FILTER_VERIFIER"
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08003740 android:protectionLevel="signature" />
3741
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003742 <!-- @SystemApi Allows applications to access serial ports via the SerialManager.
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04003743 @hide -->
3744 <permission android:name="android.permission.SERIAL_PORT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003745 android:protectionLevel="signature|privileged" />
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04003746
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08003747 <!-- Allows the holder to access content providers from outside an ApplicationThread.
3748 This permission is enforced by the ActivityManagerService on the corresponding APIs,
3749 in particular ActivityManagerService#getContentProviderExternal(String) and
3750 ActivityManagerService#removeContentProviderExternal(String).
3751 @hide
3752 -->
3753 <permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08003754 android:protectionLevel="signature" />
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003755
3756 <!-- @SystemApi Allows an application to hold an UpdateLock, recommending that a headless
Christopher Tate8662cab52012-02-23 14:59:36 -08003757 OTA reboot *not* occur while the lock is held.
3758 @hide -->
3759 <permission android:name="android.permission.UPDATE_LOCK"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003760 android:protectionLevel="signature|privileged" />
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08003761
Philip P. Moltmann33115152018-04-11 13:39:36 -07003762 <!-- @SystemApi @TestApi Allows an application to read the current set of notifications, including
Daniel Sandlerfde19b12013-01-17 00:21:05 -05003763 any metadata and intents attached.
3764 @hide -->
3765 <permission android:name="android.permission.ACCESS_NOTIFICATIONS"
Svet Ganovda0acdf2017-02-15 10:28:51 -08003766 android:protectionLevel="signature|privileged|appop" />
Daniel Sandlerfde19b12013-01-17 00:21:05 -05003767
Svetoslav71b6ca62015-06-25 18:19:14 -07003768 <!-- Marker permission for applications that wish to access notification policy.
3769 <p>Protection level: normal
3770 -->
John Spurlock7c74f782015-06-04 13:01:42 -04003771 <permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY"
3772 android:description="@string/permdesc_access_notification_policy"
3773 android:label="@string/permlab_access_notification_policy"
3774 android:protectionLevel="normal" />
3775
Julia Reynolds6ee26172015-09-28 11:34:48 -04003776 <!-- Allows modification of do not disturb rules and policies. Only allowed for system
3777 processes.
3778 @hide -->
3779 <permission android:name="android.permission.MANAGE_NOTIFICATIONS"
3780 android:protectionLevel="signature" />
3781
Julia Reynolds4db59552017-06-30 13:34:01 -04003782 <!-- Allows notifications to be colorized
3783 <p>Not for use by third-party applications. @hide -->
3784 <permission android:name="android.permission.USE_COLORIZED_NOTIFICATIONS"
3785 android:protectionLevel="signature|setup" />
3786
Jim Miller5ecd8112013-01-09 18:50:26 -08003787 <!-- Allows access to keyguard secure storage. Only allowed for system processes.
3788 @hide -->
3789 <permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"
Svetoslav61a4dd52015-04-09 10:17:40 -07003790 android:protectionLevel="signature" />
Jim Miller5ecd8112013-01-09 18:50:26 -08003791
Jim Millerba67aee2015-02-20 16:21:26 -08003792 <!-- Allows managing (adding, removing) fingerprint templates. Reserved for the system. @hide -->
3793 <permission android:name="android.permission.MANAGE_FINGERPRINT"
Yury Zhauniarovich381e0a42015-12-13 20:01:03 +03003794 android:protectionLevel="signature|privileged" />
Jim Millerba67aee2015-02-20 16:21:26 -08003795
Jim Millere0507bb2015-08-12 20:30:34 -07003796 <!-- Allows an app to reset fingerprint attempt counter. Reserved for the system. @hide -->
3797 <permission android:name="android.permission.RESET_FINGERPRINT_LOCKOUT"
3798 android:protectionLevel="signature" />
3799
Kevin Chyna24e9fd2018-08-27 12:39:17 -07003800 <!-- Allows direct access to the <Biometric>Service interfaces. Reserved for the system. @hide -->
3801 <permission android:name="android.permission.MANAGE_BIOMETRIC"
3802 android:protectionLevel="signature" />
3803
3804 <!-- Allows direct access to the <Biometric>Service authentication methods. Reserved for the system. @hide -->
3805 <permission android:name="android.permission.USE_BIOMETRIC_INTERNAL"
3806 android:protectionLevel="signature" />
Gilad Brettercb51b8b2018-03-22 17:04:51 +02003807
Kevin Chyn95c27e02018-09-12 01:46:16 -07003808 <!-- Allows the system to control the BiometricDialog (SystemUI). Reserved for the system. @hide -->
3809 <permission android:name="android.permission.MANAGE_BIOMETRIC_DIALOG"
3810 android:protectionLevel="signature" />
3811
Gilad Brettercb51b8b2018-03-22 17:04:51 +02003812 <!-- Allows an app to reset face authentication attempt counter. Reserved for the system. @hide -->
3813 <permission android:name="android.permission.RESET_FACE_LOCKOUT"
3814 android:protectionLevel="signature" />
3815
Jim Millerc0b676d2013-03-22 16:11:08 -07003816 <!-- Allows an application to control keyguard. Only allowed for system processes.
3817 @hide -->
3818 <permission android:name="android.permission.CONTROL_KEYGUARD"
Svetoslav61a4dd52015-04-09 10:17:40 -07003819 android:protectionLevel="signature" />
Jim Millerc0b676d2013-03-22 16:11:08 -07003820
Adrian Roos82142c22014-03-27 14:56:59 +01003821 <!-- Allows an application to listen to trust changes. Only allowed for system processes.
3822 @hide -->
3823 <permission android:name="android.permission.TRUST_LISTENER"
Svetoslav61a4dd52015-04-09 10:17:40 -07003824 android:protectionLevel="signature" />
Adrian Roos82142c22014-03-27 14:56:59 +01003825
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003826 <!-- @SystemApi Allows an application to provide a trust agent.
Adrian Roos18ea8932014-05-28 14:53:06 +02003827 @hide For security reasons, this is a platform-only permission. -->
3828 <permission android:name="android.permission.PROVIDE_TRUST_AGENT"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003829 android:protectionLevel="signature|privileged" />
Adrian Roos18ea8932014-05-28 14:53:06 +02003830
Lucas Dupinc80c67e2017-12-04 14:29:10 -08003831 <!-- @SystemApi Allows an application to show a message
3832 on the keyguard when asking to dismiss it.
3833 @hide For security reasons, this is a platform-only permission. -->
3834 <permission android:name="android.permission.SHOW_KEYGUARD_MESSAGE"
3835 android:protectionLevel="signature|privileged" />
3836
Ido Ofir29372ab2014-06-04 10:52:44 -07003837 <!-- Allows an application to launch the trust agent settings activity.
3838 @hide -->
3839 <permission android:name="android.permission.LAUNCH_TRUST_AGENT_SETTINGS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003840 android:protectionLevel="signature|privileged" />
Ido Ofir29372ab2014-06-04 10:52:44 -07003841
Adrian Roosa06d5ca2014-07-28 15:14:21 +02003842 <!-- @SystemApi Must be required by an {@link
3843 android.service.trust.TrustAgentService},
3844 to ensure that only the system can bind to it.
3845 @hide -->
Adrian Roos7e03dfc2014-05-16 16:06:28 +02003846 <permission android:name="android.permission.BIND_TRUST_AGENT"
Svetoslav61a4dd52015-04-09 10:17:40 -07003847 android:protectionLevel="signature" />
Adrian Roosff2144c2014-03-28 13:02:19 +01003848
3849 <!-- Must be required by an {@link
Daniel Sandler5feceeb2013-03-22 18:29:23 -07003850 android.service.notification.NotificationListenerService},
Svetoslav71b6ca62015-06-25 18:19:14 -07003851 to ensure that only the system can bind to it.
3852 <p>Protection level: signature
3853 -->
Daniel Sandler5feceeb2013-03-22 18:29:23 -07003854 <permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
Daniel Sandler5feceeb2013-03-22 18:29:23 -07003855 android:protectionLevel="signature" />
3856
Julia Reynolds1327d3c2017-02-17 09:26:45 -05003857 <!-- @SystemApi Must be required by an {@link
Julia Reynolds79672302017-01-12 08:30:16 -05003858 android.service.notification.NotificationAssistantService} to ensure that only the system
Julia Reynolds77b2cc92016-11-08 14:41:09 -05003859 can bind to it.
Chris Wren9fa689f2015-11-20 16:44:53 -05003860 <p>Protection level: signature
Julia Reynolds1327d3c2017-02-17 09:26:45 -05003861 @hide
Chris Wren9fa689f2015-11-20 16:44:53 -05003862 -->
Julia Reynolds77b2cc92016-11-08 14:41:09 -05003863 <permission android:name="android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE"
Chris Wren9fa689f2015-11-20 16:44:53 -05003864 android:protectionLevel="signature" />
3865
Adam Powelle30c9af32015-02-27 15:51:11 -08003866 <!-- Must be required by a {@link
3867 android.service.chooser.ChooserTargetService}, to ensure that
Svetoslav71b6ca62015-06-25 18:19:14 -07003868 only the system can bind to it.
3869 <p>Protection level: signature
3870 -->
Adam Powelle30c9af32015-02-27 15:51:11 -08003871 <permission android:name="android.permission.BIND_CHOOSER_TARGET_SERVICE"
Adam Powelle30c9af32015-02-27 15:51:11 -08003872 android:protectionLevel="signature" />
3873
Kang Li61cf4d12017-04-13 09:17:07 -07003874 <!-- @SystemApi Must be held by services that extend
3875 {@link android.service.resolver.ResolverRankerService}.
3876 <p>Protection level: signature|privileged
3877 @hide
3878 -->
3879 <permission android:name="android.permission.PROVIDE_RESOLVER_RANKER_SERVICE"
3880 android:protectionLevel="signature|privileged" />
3881
Kang Libbced1c2017-04-05 12:30:55 -07003882 <!-- @SystemApi Must be required by services that extend
3883 {@link android.service.resolver.ResolverRankerService}, to ensure that only the system can
3884 bind to them.
3885 <p>Protection level: signature
3886 @hide
3887 -->
3888 <permission android:name="android.permission.BIND_RESOLVER_RANKER_SERVICE"
3889 android:protectionLevel="signature" />
3890
Julia Reynoldsb0a773f2015-08-25 15:01:22 -04003891 <!-- Must be required by a {@link
John Spurlock7340fc82014-04-24 18:50:12 -04003892 android.service.notification.ConditionProviderService},
3893 to ensure that only the system can bind to it.
Julia Reynoldsb0a773f2015-08-25 15:01:22 -04003894 <p>Protection level: signature
3895 -->
John Spurlock7340fc82014-04-24 18:50:12 -04003896 <permission android:name="android.permission.BIND_CONDITION_PROVIDER_SERVICE"
John Spurlock7340fc82014-04-24 18:50:12 -04003897 android:protectionLevel="signature" />
3898
John Spurlockeb8d1be2014-06-25 17:46:15 -04003899 <!-- Must be required by an {@link android.service.dreams.DreamService},
Svetoslav71b6ca62015-06-25 18:19:14 -07003900 to ensure that only the system can bind to it.
3901 <p>Protection level: signature
3902 -->
John Spurlockeb8d1be2014-06-25 17:46:15 -04003903 <permission android:name="android.permission.BIND_DREAM_SERVICE"
John Spurlockeb8d1be2014-06-25 17:46:15 -04003904 android:protectionLevel="signature" />
3905
Daniel Nishicf9d19e2017-01-23 14:33:42 -08003906 <!-- Must be required by an {@link android.app.usage.CacheQuotaService} to ensure that only the
3907 system can bind to it.
3908 @hide This is not a third-party API (intended for OEMs and system apps).
3909 -->
3910 <permission android:name="android.permission.BIND_CACHE_QUOTA_SERVICE"
3911 android:protectionLevel="signature" />
3912
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003913 <!-- @SystemApi Allows an application to call into a carrier setup flow. It is up to the
Evan Charlton843d5ea2013-05-13 10:35:33 -07003914 carrier setup application to enforce that this permission is required
3915 @hide This is not a third-party API (intended for OEMs and system apps). -->
3916 <permission android:name="android.permission.INVOKE_CARRIER_SETUP"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003917 android:protectionLevel="signature|privileged" />
Evan Charlton843d5ea2013-05-13 10:35:33 -07003918
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003919 <!-- @SystemApi Allows an application to listen for network condition observations.
Brian Williammee1ed51622013-07-31 17:07:33 -07003920 @hide This is not a third-party API (intended for system apps). -->
3921 <permission android:name="android.permission.ACCESS_NETWORK_CONDITIONS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003922 android:protectionLevel="signature|privileged" />
Brian Williammee1ed51622013-07-31 17:07:33 -07003923
Jeff Brownb61eaaa2014-06-06 19:46:26 -07003924 <!-- @SystemApi Allows an application to provision and access DRM certificates
Jeff Tinker9de8c1d2014-04-03 11:51:37 -07003925 @hide This is not a third-party API (intended for system apps). -->
3926 <permission android:name="android.permission.ACCESS_DRM_CERTIFICATES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003927 android:protectionLevel="signature|privileged" />
Jeff Tinker9de8c1d2014-04-03 11:51:37 -07003928
Michael Wrightd86ecd22014-08-12 19:27:54 -07003929 <!-- Api Allows an application to manage media projection sessions.
Michael Wrightc39d47a2014-07-08 18:07:36 -07003930 @hide This is not a third-party API (intended for system apps). -->
Michael Wrightd86ecd22014-08-12 19:27:54 -07003931 <permission android:name="android.permission.MANAGE_MEDIA_PROJECTION"
Michael Wrightc39d47a2014-07-08 18:07:36 -07003932 android:protectionLevel="signature" />
3933
Jeff Sharkey16c8e3f2014-07-24 17:08:17 -07003934 <!-- @SystemApi Allows an application to read install sessions
3935 @hide This is not a third-party API (intended for system apps). -->
3936 <permission android:name="android.permission.READ_INSTALL_SESSIONS"
3937 android:label="@string/permlab_readInstallSessions"
Svetoslav61a4dd52015-04-09 10:17:40 -07003938 android:description="@string/permdesc_readInstallSessions"
3939 android:protectionLevel="normal"/>
Jeff Tinker6bf5b602014-04-30 10:02:39 -07003940
3941 <!-- @SystemApi Allows an application to remove DRM certificates
3942 @hide This is not a third-party API (intended for system apps). -->
3943 <permission android:name="android.permission.REMOVE_DRM_CERTIFICATES"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003944 android:protectionLevel="signature|privileged" />
Jeff Sharkey16c8e3f2014-07-24 17:08:17 -07003945
Zach Johnsoncdaaa912015-05-13 16:25:12 -07003946 <!-- @deprecated Use {@link android.Manifest.permission#BIND_CARRIER_SERVICES} instead -->
Cheuksan Wangf9c50c42014-10-21 15:58:23 -07003947 <permission android:name="android.permission.BIND_CARRIER_MESSAGING_SERVICE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003948 android:protectionLevel="signature|privileged" />
Cheuksan Wangf9c50c42014-10-21 15:58:23 -07003949
Jorim Jaggi25e12ab2015-04-02 11:46:28 -07003950 <!-- Allows an application to interact with the currently active
3951 {@link android.service.voice.VoiceInteractionService}.
3952 @hide -->
3953 <permission android:name="android.permission.ACCESS_VOICE_INTERACTION_SERVICE"
Svetoslav61a4dd52015-04-09 10:17:40 -07003954 android:protectionLevel="signature" />
Jorim Jaggi25e12ab2015-04-02 11:46:28 -07003955
Zach Johnsoncdaaa912015-05-13 16:25:12 -07003956 <!-- The system process that is allowed to bind to services in carrier apps will
3957 have this permission. Carrier apps should use this permission to protect
Svetoslav71b6ca62015-06-25 18:19:14 -07003958 their services that only the system is allowed to bind to.
Peter Visontayfb5883e2017-07-10 16:26:58 +01003959 <p>Protection level: signature|privileged
Svetoslav71b6ca62015-06-25 18:19:14 -07003960 -->
Zach Johnsoncdaaa912015-05-13 16:25:12 -07003961 <permission android:name="android.permission.BIND_CARRIER_SERVICES"
3962 android:label="@string/permlab_bindCarrierServices"
3963 android:description="@string/permdesc_bindCarrierServices"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003964 android:protectionLevel="signature|privileged" />
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -08003965
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04003966 <!-- Allows an application to query whether DO_NOT_ASK_CREDENTIALS_ON_BOOT
3967 flag is set.
3968 @hide -->
3969 <permission android:name="android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT"
3970 android:protectionLevel="signature" />
3971
Svet Ganovae0e03a2016-02-25 18:22:10 -08003972 <!-- @SystemApi Allows applications to kill UIDs.
Svet Ganov019d2302015-05-04 11:07:38 -07003973 <p>Not for use by third-party applications.
3974 @hide -->
3975 <permission android:name="android.permission.KILL_UID"
Svetoslav3e7d9772015-07-06 18:31:23 -07003976 android:protectionLevel="signature|installer" />
Svet Ganov019d2302015-05-04 11:07:38 -07003977
Fyodor Kupolov136a2e7f2015-07-27 12:20:18 -07003978 <!-- @SystemApi Allows applications to read the local WiFi and Bluetooth MAC address.
3979 @hide -->
Svet Ganov408abf72015-05-12 19:13:36 -07003980 <permission android:name="android.permission.LOCAL_MAC_ADDRESS"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003981 android:protectionLevel="signature|privileged" />
Rubin Xu218718d2017-12-20 17:47:32 +00003982 <uses-permission android:name="android.permission.LOCAL_MAC_ADDRESS"/>
Svet Ganov408abf72015-05-12 19:13:36 -07003983
Fyodor Kupolov136a2e7f2015-07-27 12:20:18 -07003984 <!-- @SystemApi Allows access to MAC addresses of WiFi and Bluetooth peer devices.
3985 @hide -->
3986 <permission android:name="android.permission.PEERS_MAC_ADDRESS"
Svetoslav Ganovb2457c32016-10-11 16:12:29 -07003987 android:protectionLevel="signature|setup" />
Fyodor Kupolov136a2e7f2015-07-27 12:20:18 -07003988
Rubin Xu12134872015-06-19 20:38:43 +01003989 <!-- Allows the Nfc stack to dispatch Nfc messages to applications. Applications
3990 can use this permission to ensure incoming Nfc messages are from the Nfc stack
3991 and not simulated by another application.
3992 @hide -->
3993 <permission android:name="android.permission.DISPATCH_NFC_MESSAGE"
Dianne Hackborna90c8de2015-07-07 17:25:25 -07003994 android:protectionLevel="signature|privileged" />
Rubin Xu12134872015-06-19 20:38:43 +01003995
keunyounga7710492015-09-23 11:33:58 -07003996 <!-- @SystemApi Allows changing day / night mode when system is configured with
3997 config_lockDayNightMode set to true. If requesting app does not have permission,
3998 it will be ignored.
3999 @hide -->
4000 <permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE"
4001 android:protectionLevel="signature|privileged" />
4002
Christopher Tate4a627c72011-04-01 14:43:32 -07004003 <!-- The system process is explicitly the only one allowed to launch the
4004 confirmation UI for full backup/restore -->
4005 <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
4006
Todd Kennedy3051caa2017-05-23 15:54:18 -07004007 <!-- Allows the holder to access and manage instant applications on the device.
Svet Ganov2acf0632015-11-24 19:10:59 -08004008 @hide -->
Svetoslav Ganov096d3042017-01-30 16:34:13 -08004009 <permission android:name="android.permission.ACCESS_INSTANT_APPS"
Chad Brubakere45606d2017-03-06 13:14:01 -08004010 android:protectionLevel="signature|installer|verifier" />
Svet Ganovd223db32017-12-22 09:43:48 -08004011 <uses-permission android:name="android.permission.ACCESS_INSTANT_APPS"/>
Svet Ganov2acf0632015-11-24 19:10:59 -08004012
Todd Kennedy3051caa2017-05-23 15:54:18 -07004013 <!-- Allows the holder to view the instant applications on the device.
4014 @hide -->
4015 <permission android:name="android.permission.VIEW_INSTANT_APPS"
Svet Ganovd223db32017-12-22 09:43:48 -08004016 android:protectionLevel="signature|preinstalled" />
4017
4018 <!-- Allows the holder to manage whether the system can bind to services
4019 provided by instant apps. This permission is intended to protect
4020 test/development fucntionality and should be used only in such cases.
4021 @hide -->
4022 <permission android:name="android.permission.MANAGE_BIND_INSTANT_SERVICE"
4023 android:protectionLevel="signature" />
Todd Kennedy3051caa2017-05-23 15:54:18 -07004024
Dongwon Kang2034a4c2015-12-14 21:57:34 +09004025 <!-- Allows receiving the usage of media resource e.g. video/audio codec and
4026 graphic memory.
4027 @hide -->
4028 <permission android:name="android.permission.RECEIVE_MEDIA_RESOURCE_USAGE"
4029 android:protectionLevel="signature|privileged" />
4030
Arunesh Mishraa772e5f2016-01-25 10:33:11 -08004031 <!-- Must be required by system/priv apps when accessing the sound trigger
4032 APIs given by {@link SoundTriggerManager}.
Philip P. Moltmanna5fd0292018-03-06 13:44:07 -08004033 @hide
4034 @SystemApi -->
Arunesh Mishraa772e5f2016-01-25 10:33:11 -08004035 <permission android:name="android.permission.MANAGE_SOUND_TRIGGER"
4036 android:protectionLevel="signature|privileged" />
4037
Philip P. Moltmann18e3eb82018-03-09 16:55:55 -08004038 <!-- Must be required by system/priv apps implementing sound trigger detection services
4039 @hide
4040 @SystemApi -->
4041 <permission android:name="android.permission.BIND_SOUND_TRIGGER_DETECTION_SERVICE"
4042 android:protectionLevel="signature" />
4043
Steven Ng980a1b62016-02-02 17:43:18 +00004044 <!-- @SystemApi Allows trusted applications to dispatch managed provisioning message to Managed
4045 Provisioning app. If requesting app does not have permission, it will be ignored.
4046 @hide -->
4047 <permission android:name="android.permission.DISPATCH_PROVISIONING_MESSAGE"
4048 android:protectionLevel="signature|privileged" />
4049
Abhijith Shastryd6e1ed52016-02-05 18:28:15 -08004050 <!-- Allows the holder to read blocked numbers. See
4051 {@link android.provider.BlockedNumberContract}.
4052 @hide -->
4053 <permission android:name="android.permission.READ_BLOCKED_NUMBERS"
4054 android:protectionLevel="signature" />
4055
4056 <!-- Allows the holder to write blocked numbers. See
4057 {@link android.provider.BlockedNumberContract}.
4058 @hide -->
4059 <permission android:name="android.permission.WRITE_BLOCKED_NUMBERS"
4060 android:protectionLevel="signature" />
4061
Ruben Brunke24b9a62016-02-16 21:38:24 -08004062 <!-- Must be required by an {@link android.service.vr.VrListenerService}, to ensure that only
4063 the system can bind to it.
4064 <p>Protection level: signature -->
4065 <permission android:name="android.permission.BIND_VR_LISTENER_SERVICE"
4066 android:protectionLevel="signature" />
4067
Karthik Ravi Shankar246b4142017-01-24 10:18:19 -08004068 <!-- Must be required by system apps when accessing restricted VR APIs.
Karthik Ravi Shankard74c0a72017-04-28 11:21:04 -07004069 @hide
4070 @SystemApi
Karthik Ravi Shankar246b4142017-01-24 10:18:19 -08004071 <p>Protection level: signature -->
4072 <permission android:name="android.permission.RESTRICTED_VR_ACCESS"
4073 android:protectionLevel="signature|preinstalled" />
4074
Ruben Brunkc7be3be2016-04-01 17:07:51 -07004075 <!-- Required to make calls to {@link android.service.vr.IVrManager}.
4076 @hide -->
4077 <permission android:name="android.permission.ACCESS_VR_MANAGER"
4078 android:protectionLevel="signature" />
4079
Santos Cordone6d77232017-08-08 17:11:41 -07004080 <!-- Required to access VR-Mode state and state change events via {android.app.VrStateCallback}
4081 @hide -->
4082 <permission android:name="android.permission.ACCESS_VR_STATE"
4083 android:protectionLevel="signature|preinstalled" />
4084
Russell Brennerb3ad5672016-03-25 12:18:07 -07004085 <!-- Allows an application to whitelist tasks during lock task mode
4086 @hide <p>Not for use by third-party applications.</p> -->
4087 <permission android:name="android.permission.UPDATE_LOCK_TASK_PACKAGES"
4088 android:protectionLevel="signature|setup" />
4089
Dan Sandler732bd6c2016-04-12 14:20:32 -04004090 <!-- @SystemApi Allows an application to replace the app name displayed alongside notifications
4091 in the N-release and later.
4092 @hide <p>Not for use by third-party applications.</p> -->
4093 <permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"
4094 android:protectionLevel="signature|privileged" />
4095
Maurice Lam132710e2017-03-03 19:13:42 -08004096 <!-- @SystemApi Allows an application to show notifications before the device is provisioned.
4097 @hide <p>Not for use by third-party applications.</p> -->
4098 <permission android:name="android.permission.NOTIFICATION_DURING_SETUP"
4099 android:protectionLevel="signature|privileged" />
4100
Felipe Leme5381aa42016-10-13 09:02:32 -07004101 <!-- @SystemApi Allows an application to manage auto-fill sessions.
4102 @hide <p>Not for use by third-party applications.</p> -->
4103 <permission android:name="android.permission.MANAGE_AUTO_FILL"
4104 android:protectionLevel="signature" />
4105
Jason Monk97a06a12016-11-09 15:53:30 -05004106 <!-- Allows an app to set the theme overlay in /vendor/overlay
4107 being used.
4108 @hide <p>Not for use by third-party applications.</p> -->
4109 <permission android:name="android.permission.MODIFY_THEME_OVERLAY"
4110 android:protectionLevel="signature" />
4111
Chad Brubaker97b383f2017-02-02 15:04:35 -08004112 <!-- Allows an instant app to create foreground services. -->
4113 <permission android:name="android.permission.INSTANT_APP_FOREGROUND_SERVICE"
Todd Kennedyc247fa12017-06-02 10:29:22 -07004114 android:protectionLevel="signature|development|instant|appop" />
Chad Brubaker97b383f2017-02-02 15:04:35 -08004115
Dianne Hackborndd027b32018-01-19 17:44:46 -08004116 <!-- Allows a regular application to use {@link android.app.Service#startForeground
4117 Service.startForeground}.
4118 <p>Protection level: normal
4119 -->
4120 <permission android:name="android.permission.FOREGROUND_SERVICE"
4121 android:description="@string/permdesc_foregroundService"
4122 android:label="@string/permlab_foregroundService"
4123 android:protectionLevel="normal|instant" />
4124
Makoto Onuki700feef2018-02-15 10:59:41 -08004125 <!-- @SystemApi Allows to access all app shortcuts.
4126 @hide -->
Makoto Onuki634cecb2017-10-13 17:10:48 -07004127 <permission android:name="android.permission.ACCESS_SHORTCUTS"
Makoto Onuki700feef2018-02-15 10:59:41 -08004128 android:protectionLevel="signature|textClassifier" />
4129
4130 <!-- @SystemApi Allows unlimited calls to shortcut mutation APIs.
4131 @hide -->
4132 <permission android:name="android.permission.UNLIMITED_SHORTCUTS_API_CALLS"
4133 android:protectionLevel="signature|textClassifier" />
Makoto Onuki634cecb2017-10-13 17:10:48 -07004134
Calin Juravle45f8b292017-11-07 18:49:43 -08004135 <!-- @SystemApi Allows an application to read the runtime profiles of other apps.
4136 @hide <p>Not for use by third-party applications. -->
4137 <permission android:name="android.permission.READ_RUNTIME_PROFILES"
4138 android:protectionLevel="signature|privileged" />
4139
Svet Ganovc1006a32018-01-16 14:05:18 -08004140 <!-- @hide Allows audio policy management. -->
4141 <permission android:name="android.permission.MANAGE_AUDIO_POLICY"
4142 android:protectionLevel="signature" />
4143
Tony Make3d1f652017-12-12 11:00:37 +00004144 <!-- @SystemApi Allows an application to turn on / off quiet mode.
4145 @hide <p>Not for use by third-party applications. -->
4146 <permission android:name="android.permission.MODIFY_QUIET_MODE"
4147 android:protectionLevel="signature|privileged" />
4148
Svet Ganov82f09bc2018-01-12 22:08:40 -08004149 <!-- Allows internal management of the camera framework
4150 @hide -->
4151 <permission android:name="android.permission.MANAGE_CAMERA"
4152 android:protectionLevel="signature" />
4153
Jorim Jaggi33a701a2017-12-01 14:58:18 +01004154 <!-- Allows an application to control remote animations. See
4155 {@link ActivityOptions#makeRemoteAnimation}
4156 @hide <p>Not for use by third-party applications. -->
4157 <permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"
4158 android:protectionLevel="signature|privileged" />
4159
Svetoslav Ganov2d20fb42018-02-08 15:52:10 -08004160 <!-- Allows an application to watch changes and/or active state of app ops.
4161 @hide <p>Not for use by third-party applications. -->
4162 <permission android:name="android.permission.WATCH_APPOPS"
4163 android:protectionLevel="signature" />
4164
Ben Lin296f80a2018-02-27 15:23:38 -08004165 <!-- Allows an application to directly open the "Open by default" page inside a package's
4166 Details screen.
4167 @hide <p>Not for use by third-party applications. -->
Ben Lin21da7f52018-09-13 15:28:50 -07004168 <permission android:name="android.permission.OPEN_APP_OPEN_BY_DEFAULT_SETTINGS"
Ben Lin296f80a2018-02-27 15:23:38 -08004169 android:protectionLevel="signature" />
4170
Mathew Inwood5f1f29a2018-04-03 15:40:56 +01004171 <!-- Allows hidden API checks to be disabled when starting a process.
4172 @hide <p>Not for use by third-party applications. -->
4173 <permission android:name="android.permission.DISABLE_HIDDEN_API_CHECKS"
4174 android:protectionLevel="signature" />
4175
Makoto Onukia042aaa2018-09-18 16:14:12 -07004176 <!-- @hide Permission that protects the
4177 {@link android.provider.Telephony.Intents#ACTION_DEFAULT_SMS_PACKAGE_CHANGED_INTERNAL}
4178 broadcast -->
4179 <permission android:name="android.permission.MONITOR_DEFAULT_SMS_PACKAGE"
4180 android:protectionLevel="signature" />
4181
Makoto Onukidf7e4812018-09-24 14:31:25 -07004182 <!-- A subclass of {@link android.app.SmsAppService} must be protected with this permission. -->
4183 <permission android:name="android.permission.BIND_SMS_APP_SERVICE"
4184 android:protectionLevel="signature" />
4185
Chad Brubakerbd175fe2018-10-01 10:38:54 -07004186 <!-- @hide Permission that allows background clipboard access.
4187 <p>Not for use by third-party applications. -->
4188 <permission android:name="android.permission.READ_CLIPBOARD_IN_BACKGROUND"
4189 android:protectionLevel="signature" />
4190
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004191 <application android:process="system"
4192 android:persistent="true"
4193 android:hasCode="false"
4194 android:label="@string/android_system_label"
4195 android:allowClearUserData="false"
Amith Yamasani30f8eb42013-11-06 14:54:50 -08004196 android:backupAgent="com.android.server.backup.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07004197 android:killAfterRestore="false"
Fabrice Di Meglio4497e0c2012-09-10 20:46:33 -07004198 android:icon="@drawable/ic_launcher_android"
Alan Viveretteb9da2802015-05-05 14:09:21 -07004199 android:supportsRtl="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004200 android:theme="@style/Theme.DeviceDefault.Light.DarkActionBar"
Jeff Sharkey8a372a02016-03-16 16:25:45 -06004201 android:defaultToDeviceProtectedStorage="true"
4202 android:directBootAware="true">
Adam Powelle7c74cc2016-01-28 16:42:27 +00004203 <activity android:name="com.android.internal.app.ChooserActivity"
4204 android:theme="@style/Theme.DeviceDefault.Resolver"
4205 android:finishOnCloseSystemDialogs="true"
4206 android:excludeFromRecents="true"
4207 android:documentLaunchMode="never"
4208 android:relinquishTaskIdentity="true"
Adam Powell46ef0572016-05-04 16:29:53 -07004209 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|keyboard|keyboardHidden"
Chad Brubakeraef01222017-04-03 14:45:23 -07004210 android:process=":ui"
4211 android:visibleToInstantApps="true">
Adam Powelle7c74cc2016-01-28 16:42:27 +00004212 <intent-filter>
4213 <action android:name="android.intent.action.CHOOSER" />
4214 <category android:name="android.intent.category.DEFAULT" />
4215 <category android:name="android.intent.category.VOICE" />
4216 </intent-filter>
4217 </activity>
Casey Burkhardt5e8b9802017-03-24 10:07:20 -07004218 <activity android:name="com.android.internal.app.AccessibilityButtonChooserActivity"
Casey Burkhardtafe3ef1b2017-04-05 16:47:19 -07004219 android:exported="false"
Casey Burkhardt5e8b9802017-03-24 10:07:20 -07004220 android:theme="@style/Theme.DeviceDefault.Resolver"
4221 android:finishOnCloseSystemDialogs="true"
4222 android:excludeFromRecents="true"
4223 android:documentLaunchMode="never"
4224 android:relinquishTaskIdentity="true"
4225 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|keyboard|keyboardHidden"
Chad Brubakeraef01222017-04-03 14:45:23 -07004226 android:process=":ui"
4227 android:visibleToInstantApps="true">
Casey Burkhardt5e8b9802017-03-24 10:07:20 -07004228 <intent-filter>
Casey Burkhardtafe3ef1b2017-04-05 16:47:19 -07004229 <action android:name="com.android.internal.intent.action.CHOOSE_ACCESSIBILITY_BUTTON" />
Casey Burkhardt5e8b9802017-03-24 10:07:20 -07004230 <category android:name="android.intent.category.DEFAULT" />
4231 </intent-filter>
4232 </activity>
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004233 <activity android:name="com.android.internal.app.IntentForwarderActivity"
4234 android:finishOnCloseSystemDialogs="true"
4235 android:theme="@style/Theme.NoDisplay"
4236 android:excludeFromRecents="true"
4237 android:label="@string/user_owner_label"
4238 android:exported="true"
Patrick Baumann33ea16b2018-02-05 11:07:39 -08004239 android:visibleToInstantApps="true"
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004240 >
4241 </activity>
Nicolas Prevot741abfc2015-08-11 12:03:51 +01004242 <activity-alias android:name="com.android.internal.app.ForwardIntentToParent"
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004243 android:targetActivity="com.android.internal.app.IntentForwarderActivity"
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004244 android:exported="true"
4245 android:label="@string/user_owner_label">
4246 </activity-alias>
4247 <activity-alias android:name="com.android.internal.app.ForwardIntentToManagedProfile"
4248 android:targetActivity="com.android.internal.app.IntentForwarderActivity"
Tony Mak9d0fedf2017-11-09 10:56:56 +00004249 android:icon="@drawable/ic_corp_badge"
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004250 android:exported="true"
4251 android:label="@string/managed_profile_label">
4252 </activity-alias>
Dianne Hackborn860755f2010-06-03 18:47:52 -07004253 <activity android:name="com.android.internal.app.HeavyWeightSwitcherActivity"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004254 android:theme="@style/Theme.DeviceDefault.Light.Dialog"
Dianne Hackborn860755f2010-06-03 18:47:52 -07004255 android:label="@string/heavy_weight_switcher_title"
4256 android:finishOnCloseSystemDialogs="true"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004257 android:excludeFromRecents="true"
4258 android:process=":ui">
Dianne Hackborn860755f2010-06-03 18:47:52 -07004259 </activity>
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07004260 <activity android:name="com.android.internal.app.PlatLogoActivity"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004261 android:theme="@style/Theme.Wallpaper.NoTitleBar.Fullscreen"
Dan Sandler2200f862014-10-06 01:04:47 -04004262 android:configChanges="orientation|keyboardHidden"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004263 android:process=":ui">
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07004264 </activity>
Tobias Haamel154f7a12010-02-17 11:56:39 -08004265 <activity android:name="com.android.internal.app.DisableCarModeActivity"
4266 android:theme="@style/Theme.NoDisplay"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004267 android:excludeFromRecents="true"
4268 android:process=":ui">
Tobias Haamel154f7a12010-02-17 11:56:39 -08004269 </activity>
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -08004270 <activity android:name="com.android.internal.app.DumpHeapActivity"
4271 android:theme="@style/Theme.Translucent.NoTitleBar"
4272 android:label="@string/dump_heap_title"
4273 android:finishOnCloseSystemDialogs="true"
4274 android:noHistory="true"
4275 android:excludeFromRecents="true"
4276 android:process=":ui">
4277 </activity>
4278 <provider android:name="com.android.server.am.DumpHeapProvider"
4279 android:authorities="com.android.server.heapdump"
4280 android:grantUriPermissions="true"
4281 android:multiprocess="false"
4282 android:singleUser="true" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004283
Fred Quintana33269202009-04-20 16:05:10 -07004284 <activity android:name="android.accounts.ChooseAccountActivity"
4285 android:excludeFromRecents="true"
Fabrice Di Meglio795f1352011-01-20 16:12:36 -08004286 android:exported="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004287 android:theme="@style/Theme.DeviceDefault.Light.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004288 android:label="@string/choose_account_label"
Chad Brubakeraef01222017-04-03 14:45:23 -07004289 android:process=":ui"
4290 android:visibleToInstantApps="true">
Fred Quintana33269202009-04-20 16:05:10 -07004291 </activity>
4292
Fred Quintana1121bb52011-09-14 23:19:35 -07004293 <activity android:name="android.accounts.ChooseTypeAndAccountActivity"
4294 android:excludeFromRecents="true"
4295 android:exported="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004296 android:theme="@style/Theme.DeviceDefault.Light.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07004297 android:label="@string/choose_account_label"
Chad Brubakeraef01222017-04-03 14:45:23 -07004298 android:process=":ui"
4299 android:visibleToInstantApps="true">
Fred Quintana1121bb52011-09-14 23:19:35 -07004300 </activity>
4301
4302 <activity android:name="android.accounts.ChooseAccountTypeActivity"
4303 android:excludeFromRecents="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004304 android:theme="@style/Theme.DeviceDefault.Light.Dialog"
Fred Quintana1121bb52011-09-14 23:19:35 -07004305 android:label="@string/choose_account_label"
Chad Brubakeraef01222017-04-03 14:45:23 -07004306 android:process=":ui"
4307 android:visibleToInstantApps="true">
Fred Quintana1121bb52011-09-14 23:19:35 -07004308 </activity>
4309
Amith Yamasani23c8b962013-04-10 13:37:18 -07004310 <activity android:name="android.accounts.CantAddAccountActivity"
4311 android:excludeFromRecents="true"
4312 android:exported="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004313 android:theme="@style/Theme.DeviceDefault.Light.Dialog.NoActionBar"
Amith Yamasani23c8b962013-04-10 13:37:18 -07004314 android:process=":ui">
4315 </activity>
4316
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07004317 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
4318 android:excludeFromRecents="true"
Adam Powellc91466f2011-01-22 14:34:13 -08004319 android:exported="true"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004320 android:theme="@style/Theme.DeviceDefault.Light.DialogWhenLarge"
Chad Brubakeraef01222017-04-03 14:45:23 -07004321 android:process=":ui"
4322 android:visibleToInstantApps="true">
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07004323 </activity>
4324
Fred Quintanab19e62a2010-12-16 13:54:43 -08004325 <activity android:name="android.content.SyncActivityTooManyDeletes"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004326 android:theme="@style/Theme.DeviceDefault.Light.Dialog"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004327 android:label="@string/sync_too_many_deletes"
4328 android:process=":ui">
Fred Quintanab19e62a2010-12-16 13:54:43 -08004329 </activity>
4330
Dianne Hackbornb1829552015-01-05 14:40:24 -08004331 <activity android:name="com.android.internal.app.ShutdownActivity"
Mike Lockwoodbad80e02009-07-30 01:21:08 -07004332 android:permission="android.permission.SHUTDOWN"
Dianne Hackbornb1829552015-01-05 14:40:24 -08004333 android:theme="@style/Theme.NoDisplay"
Mike Lockwood49f74682009-07-30 15:27:00 -07004334 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07004335 <intent-filter>
Sudheer Shanka218190a2017-03-30 16:07:54 -07004336 <action android:name="com.android.internal.intent.action.REQUEST_SHUTDOWN" />
Mike Lockwoodbad80e02009-07-30 01:21:08 -07004337 <category android:name="android.intent.category.DEFAULT" />
4338 </intent-filter>
Mike Lockwoodb8a8a572010-09-08 07:21:07 -04004339 <intent-filter>
4340 <action android:name="android.intent.action.REBOOT" />
4341 <category android:name="android.intent.category.DEFAULT" />
4342 </intent-filter>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07004343 </activity>
Mike Lockwood02eb8742011-02-27 09:10:37 -08004344
Danke Xie22d1f9f2009-08-18 18:28:45 -04004345 <activity android:name="com.android.internal.app.NetInitiatedActivity"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004346 android:theme="@style/Theme.DeviceDefault.Light.Dialog.Alert"
Dianne Hackborn905577f2011-09-07 18:31:28 -07004347 android:excludeFromRecents="true"
4348 android:process=":ui">
Danke Xie22d1f9f2009-08-18 18:28:45 -04004349 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07004350
Fyodor Kupolovc40e2442015-11-18 11:07:00 -08004351 <activity android:name="com.android.internal.app.SystemUserHomeActivity"
4352 android:enabled="false"
4353 android:process=":ui"
4354 android:systemUserOnly="true"
4355 android:theme="@style/Theme.Translucent.NoTitleBar">
4356 <intent-filter android:priority="-100">
4357 <action android:name="android.intent.action.MAIN" />
4358 <category android:name="android.intent.category.HOME" />
4359 </intent-filter>
4360 </activity>
4361
Amith Yamasani12747872015-12-07 14:19:49 -08004362 <!-- Activity to prompt user if it's ok to create a new user sandbox for a
4363 specified account. -->
4364 <activity android:name="com.android.internal.app.ConfirmUserCreationActivity"
4365 android:excludeFromRecents="true"
4366 android:process=":ui"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004367 android:theme="@style/Theme.DeviceDefault.Light.Dialog.Alert">
Amith Yamasani12747872015-12-07 14:19:49 -08004368 <intent-filter android:priority="1000">
4369 <action android:name="android.os.action.CREATE_USER" />
4370 <category android:name="android.intent.category.DEFAULT" />
4371 </intent-filter>
4372 </activity>
4373
Suprabh Shukla3c3af142018-03-30 00:28:37 -07004374 <activity android:name="com.android.internal.app.SuspendedAppActivity"
4375 android:theme="@style/Theme.DeviceDefault.Light.Dialog.Alert"
4376 android:excludeFromRecents="true"
4377 android:process=":ui">
4378 </activity>
4379
Rubin Xu58d25992016-01-21 17:47:13 +00004380 <activity android:name="com.android.internal.app.UnlaunchableAppActivity"
Salvador Martinez7e2657c2016-09-26 12:49:31 -07004381 android:theme="@style/Theme.DeviceDefault.Light.Dialog.Alert"
Rubin Xu58d25992016-01-21 17:47:13 +00004382 android:excludeFromRecents="true"
4383 android:process=":ui">
4384 </activity>
4385
Eugene Suslacf00ade2017-04-10 11:51:58 -07004386 <activity android:name="com.android.settings.notification.NotificationAccessConfirmationActivity"
4387 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"
4388 android:excludeFromRecents="true">
4389 </activity>
4390
Ben Gruver1ab3d6e2017-12-07 13:45:08 -08004391 <activity android:name="com.android.internal.app.HarmfulAppWarningActivity"
4392 android:theme="@style/Theme.DeviceDefault.Light.Dialog.Alert"
4393 android:excludeFromRecents="true"
4394 android:process=":ui"
Ben Gruverc7ffbe62018-01-19 11:28:04 -08004395 android:label="@string/harmful_app_warning_title"
Ben Gruver1ab3d6e2017-12-07 13:45:08 -08004396 android:exported="false">
4397 </activity>
4398
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07004399 <receiver android:name="com.android.server.BootReceiver"
Fyodor Kupolov4f5de342015-08-25 10:08:45 -07004400 android:systemUserOnly="true">
Dianne Hackbornd83a0962014-05-02 16:28:33 -07004401 <intent-filter android:priority="1000">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004402 <action android:name="android.intent.action.BOOT_COMPLETED" />
4403 </intent-filter>
4404 </receiver>
4405
Ben Gruver12964bf2015-04-06 10:55:08 -07004406 <receiver android:name="com.android.server.updates.CertPinInstallReceiver"
4407 android:permission="android.permission.UPDATE_CONFIG">
Geremy Condrab6310842012-08-23 22:00:15 -07004408 <intent-filter>
4409 <action android:name="android.intent.action.UPDATE_PINS" />
Nick Kralevich103173e2014-06-28 12:18:03 -07004410 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
Geremy Condrab6310842012-08-23 22:00:15 -07004411 </intent-filter>
4412 </receiver>
4413
Ben Gruver12964bf2015-04-06 10:55:08 -07004414 <receiver android:name="com.android.server.updates.IntentFirewallInstallReceiver"
4415 android:permission="android.permission.UPDATE_CONFIG">
Ben Gruver633dc9b2013-04-04 12:05:49 -07004416 <intent-filter>
4417 <action android:name="android.intent.action.UPDATE_INTENT_FIREWALL" />
Nick Kralevich103173e2014-06-28 12:18:03 -07004418 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
Ben Gruver633dc9b2013-04-04 12:05:49 -07004419 </intent-filter>
4420 </receiver>
4421
Ben Gruver12964bf2015-04-06 10:55:08 -07004422 <receiver android:name="com.android.server.updates.SmsShortCodesInstallReceiver"
4423 android:permission="android.permission.UPDATE_CONFIG">
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07004424 <intent-filter>
4425 <action android:name="android.intent.action.UPDATE_SMS_SHORT_CODES" />
Nick Kralevich103173e2014-06-28 12:18:03 -07004426 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
Robert Greenwaltc6fa2372012-09-24 13:57:16 -07004427 </intent-filter>
4428 </receiver>
4429
Ricky Waiebe36242017-10-27 14:36:43 +01004430 <receiver android:name="com.android.server.updates.NetworkWatchlistInstallReceiver"
4431 android:permission="android.permission.UPDATE_CONFIG">
4432 <intent-filter>
4433 <action android:name="android.intent.action.UPDATE_NETWORK_WATCHLIST" />
4434 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4435 </intent-filter>
4436 </receiver>
4437
Amit Mahajan9069fab2015-05-01 11:05:47 -07004438 <receiver android:name="com.android.server.updates.ApnDbInstallReceiver"
4439 android:permission="android.permission.UPDATE_CONFIG">
4440 <intent-filter>
Amit Mahajanf5ee7862017-02-24 13:29:37 -08004441 <action android:name="com.android.internal.intent.action.UPDATE_APN_DB" />
Amit Mahajan9069fab2015-05-01 11:05:47 -07004442 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4443 </intent-filter>
4444 </receiver>
4445
Ben Gruver12964bf2015-04-06 10:55:08 -07004446 <receiver android:name="com.android.server.updates.CarrierProvisioningUrlsInstallReceiver"
4447 android:permission="android.permission.UPDATE_CONFIG">
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004448 <intent-filter>
4449 <action android:name="android.intent.action.UPDATE_CARRIER_PROVISIONING_URLS" />
Nick Kralevich103173e2014-06-28 12:18:03 -07004450 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004451 </intent-filter>
4452 </receiver>
4453
Chad Brubaker76894462016-08-10 10:40:45 -07004454 <receiver android:name="com.android.server.updates.CertificateTransparencyLogInstallReceiver"
4455 android:permission="android.permission.UPDATE_CONFIG">
4456 <intent-filter>
4457 <action android:name="android.intent.action.UPDATE_CT_LOGS" />
4458 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4459 </intent-filter>
4460 </receiver>
4461
Abodunrinwa Toki51c42032017-04-02 19:16:01 +01004462 <receiver android:name="com.android.server.updates.LangIdInstallReceiver"
4463 android:permission="android.permission.UPDATE_CONFIG">
4464 <intent-filter>
4465 <action android:name="android.intent.action.UPDATE_LANG_ID" />
4466 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4467 </intent-filter>
4468 </receiver>
4469
Abodunrinwa Tokibb957d12017-04-12 14:40:46 +01004470 <receiver android:name="com.android.server.updates.SmartSelectionInstallReceiver"
4471 android:permission="android.permission.UPDATE_CONFIG">
4472 <intent-filter>
4473 <action android:name="android.intent.action.UPDATE_SMART_SELECTION" />
4474 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4475 </intent-filter>
4476 </receiver>
4477
fionaxuea56c332017-12-28 16:41:52 -08004478 <receiver android:name="com.android.server.updates.CarrierIdInstallReceiver"
4479 android:permission="android.permission.UPDATE_CONFIG">
4480 <intent-filter>
fionaxu2776ed52018-05-08 11:57:53 -07004481 <action android:name="android.os.action.UPDATE_CARRIER_ID_DB" />
fionaxuea56c332017-12-28 16:41:52 -08004482 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
4483 </intent-filter>
4484 </receiver>
4485
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004486 <receiver android:name="com.android.server.MasterClearReceiver"
Amith Yamasani655d0e22013-06-12 14:19:10 -07004487 android:permission="android.permission.MASTER_CLEAR">
4488 <intent-filter
4489 android:priority="100" >
Lenka Trochtova73aeea22016-11-18 17:34:34 +01004490 <!-- For Checkin, Settings, etc.: action=FACTORY_RESET -->
4491 <action android:name="android.intent.action.FACTORY_RESET" />
4492 <!-- As above until all the references to the deprecated MASTER_CLEAR get updated to
4493 FACTORY_RESET. -->
Dan Egnor18e93962010-02-10 19:27:58 -08004494 <action android:name="android.intent.action.MASTER_CLEAR" />
4495
4496 <!-- MCS always uses REMOTE_INTENT: category=MASTER_CLEAR -->
Costin Manolache8d83f9e2010-05-12 16:04:10 -07004497 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004498 <category android:name="android.intent.category.MASTER_CLEAR" />
4499 </intent-filter>
4500 </receiver>
Dianne Hackborn42499172010-10-15 18:45:07 -07004501
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07004502 <service android:name="android.hardware.location.GeofenceHardwareService"
4503 android:permission="android.permission.LOCATION_HARDWARE"
4504 android:exported="false" />
Christopher Tatecefba582013-11-14 18:10:35 -08004505
Christopher Tated417d622013-08-19 16:14:25 -07004506 <service android:name="com.android.server.MountServiceIdler"
Christopher Tate7060b042014-06-09 19:50:00 -07004507 android:exported="true"
4508 android:permission="android.permission.BIND_JOB_SERVICE" >
Christopher Tated417d622013-08-19 16:14:25 -07004509 </service>
4510
Christopher Tate5eeb59c2014-07-22 10:50:22 -07004511 <service android:name="com.android.server.backup.FullBackupJob"
4512 android:exported="true"
4513 android:permission="android.permission.BIND_JOB_SERVICE" >
4514 </service>
4515
Christopher Tate73570db2015-02-26 19:32:55 -08004516 <service android:name="com.android.server.backup.KeyValueBackupJob"
4517 android:permission="android.permission.BIND_JOB_SERVICE" >
4518 </service>
4519
Shreyas Basarge8c834c02016-01-07 13:53:16 +00004520 <service android:name="com.android.server.content.SyncJobService"
4521 android:permission="android.permission.BIND_JOB_SERVICE" >
4522 </service>
4523
Calin Juravle91d40f12017-03-15 18:38:57 -07004524 <service android:name="com.android.server.pm.BackgroundDexOptService"
Daniel Nishi77a78c62016-12-13 10:38:42 -08004525 android:exported="true"
4526 android:permission="android.permission.BIND_JOB_SERVICE">
4527 </service>
4528
Svetoslav Ganov096d3042017-01-30 16:34:13 -08004529 <service android:name="com.android.server.PruneInstantAppsJobService"
4530 android:permission="android.permission.BIND_JOB_SERVICE" >
4531 </service>
4532
Daniel Nishi77a78c62016-12-13 10:38:42 -08004533 <service android:name="com.android.server.storage.DiskStatsLoggingService"
4534 android:permission="android.permission.BIND_JOB_SERVICE" >
Christopher Tatecf1a2f72014-06-16 15:51:39 -07004535 </service>
4536
Fyodor Kupolovd225f0bf2017-03-20 16:04:57 -07004537 <service android:name="com.android.server.PreloadsFileCacheExpirationJobService"
4538 android:permission="android.permission.BIND_JOB_SERVICE" >
4539 </service>
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -07004540
4541 <service android:name="com.android.server.camera.CameraStatsJobService"
4542 android:permission="android.permission.BIND_JOB_SERVICE" >
4543 </service>
4544
Neil Fullercd1a1092017-09-13 21:59:59 +01004545 <service android:name="com.android.server.timezone.TimeZoneUpdateIdler"
4546 android:permission="android.permission.BIND_JOB_SERVICE" >
4547 </service>
Ricky Wai1a6e6672017-10-27 14:46:01 +01004548
4549 <service android:name="com.android.server.net.watchlist.ReportWatchlistJobService"
4550 android:permission="android.permission.BIND_JOB_SERVICE" >
4551 </service>
Kenny Guycfe7b702017-11-14 21:04:58 +00004552
4553 <service android:name="com.android.server.display.BrightnessIdleJob"
4554 android:permission="android.permission.BIND_JOB_SERVICE" >
4555 </service>
Svetoslav Ganov24c90452017-12-27 15:17:14 -08004556
4557 <service
4558 android:name="com.android.server.autofill.AutofillCompatAccessibilityService"
4559 android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
4560 android:exported="true">
4561 <meta-data
4562 android:name="android.accessibilityservice"
4563 android:resource="@xml/autofill_compat_accessibility_service" />
4564 </service>
4565
Kenny Guycfe7b702017-11-14 21:04:58 +00004566</application>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004567
4568</manifest>