blob: 713e725878e00cd480e6317fc395222f375923e4 [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"
21 package="android" android:sharedUserId="android.uid.system"
22 android:sharedUserLabel="@string/android_system_label">
23
Dianne Hackborn854060af2009-07-09 18:14:31 -070024 <!-- ================================================ -->
25 <!-- Special broadcasts that only the system can send -->
26 <!-- ================================================ -->
27 <eat-comment />
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070028
Dianne Hackborn854060af2009-07-09 18:14:31 -070029 <protected-broadcast android:name="android.intent.action.SCREEN_OFF" />
30 <protected-broadcast android:name="android.intent.action.SCREEN_ON" />
31 <protected-broadcast android:name="android.intent.action.USER_PRESENT" />
32 <protected-broadcast android:name="android.intent.action.TIME_TICK" />
33 <protected-broadcast android:name="android.intent.action.TIMEZONE_CHANGED" />
34 <protected-broadcast android:name="android.intent.action.BOOT_COMPLETED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070035 <protected-broadcast android:name="android.intent.action.PACKAGE_INSTALL" />
36 <protected-broadcast android:name="android.intent.action.PACKAGE_ADDED" />
37 <protected-broadcast android:name="android.intent.action.PACKAGE_REPLACED" />
38 <protected-broadcast android:name="android.intent.action.PACKAGE_REMOVED" />
39 <protected-broadcast android:name="android.intent.action.PACKAGE_CHANGED" />
40 <protected-broadcast android:name="android.intent.action.PACKAGE_RESTARTED" />
41 <protected-broadcast android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
42 <protected-broadcast android:name="android.intent.action.UID_REMOVED" />
43 <protected-broadcast android:name="android.intent.action.CONFIGURATION_CHANGED" />
Dianne Hackborn362d5b92009-11-11 18:04:39 -080044 <protected-broadcast android:name="android.intent.action.LOCALE_CHANGED" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070045 <protected-broadcast android:name="android.intent.action.BATTERY_CHANGED" />
46 <protected-broadcast android:name="android.intent.action.BATTERY_LOW" />
47 <protected-broadcast android:name="android.intent.action.BATTERY_OKAY" />
48 <protected-broadcast android:name="android.intent.action.ACTION_POWER_CONNECTED" />
49 <protected-broadcast android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
50 <protected-broadcast android:name="android.intent.action.ACTION_SHUTDOWN" />
51 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_LOW" />
52 <protected-broadcast android:name="android.intent.action.DEVICE_STORAGE_OK" />
Dianne Hackborn854060af2009-07-09 18:14:31 -070053 <protected-broadcast android:name="android.intent.action.NEW_OUTGOING_CALL" />
54 <protected-broadcast android:name="android.intent.action.REBOOT" />
Fred Quintanad4a1d2e2009-07-16 16:36:38 -070055
Christopher Tate4cc86e12009-09-21 19:36:51 -070056 <protected-broadcast android:name="android.backup.intent.RUN" />
57 <protected-broadcast android:name="android.backup.intent.CLEAR" />
58 <protected-broadcast android:name="android.backup.intent.INIT" />
59
Nick Pelly72440a0e2009-09-15 17:21:10 -070060 <protected-broadcast android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
61 <protected-broadcast android:name="android.bluetooth.adapter.action.SCAN_MODE_CHANGED" />
62 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
63 <protected-broadcast android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
64 <protected-broadcast android:name="android.bluetooth.adapter.action.LOCAL_NAME_CHANGED" />
65 <protected-broadcast android:name="android.bluetooth.device.action.FOUND" />
66 <protected-broadcast android:name="android.bluetooth.device.action.DISAPPEARED" />
67 <protected-broadcast android:name="android.bluetooth.device.action.CLASS_CHANGED" />
68 <protected-broadcast android:name="android.bluetooth.device.action.ACL_CONNECTED" />
69 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
70 <protected-broadcast android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
71 <protected-broadcast android:name="android.bluetooth.device.action.NAME_CHANGED" />
72 <protected-broadcast android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
73 <protected-broadcast android:name="android.bluetooth.device.action.NAME_FAILED" />
74 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
75 <protected-broadcast android:name="android.bluetooth.device.action.PAIRING_CANCEL" />
76
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 <!-- ====================================== -->
78 <!-- Permissions for things that cost money -->
79 <!-- ====================================== -->
80 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -070081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 <!-- Used for permissions that can be used to make the user spend money
83 without their direct involvement. For example, this is the group
84 for permissions that allow you to directly place phone calls,
85 directly send SMS messages, etc. -->
86 <permission-group android:name="android.permission-group.COST_MONEY"
87 android:label="@string/permgrouplab_costMoney"
88 android:description="@string/permgroupdesc_costMoney" />
89
90 <!-- Allows an application to send SMS messages. -->
91 <permission android:name="android.permission.SEND_SMS"
92 android:permissionGroup="android.permission-group.COST_MONEY"
93 android:protectionLevel="dangerous"
94 android:label="@string/permlab_sendSms"
95 android:description="@string/permdesc_sendSms" />
96
97 <!-- Allows an application to initiate a phone call without going through
98 the Dialer user interface for the user to confirm the call
99 being placed. -->
100 <permission android:name="android.permission.CALL_PHONE"
101 android:permissionGroup="android.permission-group.COST_MONEY"
102 android:protectionLevel="dangerous"
103 android:label="@string/permlab_callPhone"
104 android:description="@string/permdesc_callPhone" />
105
106 <!-- ================================== -->
107 <!-- Permissions for accessing messages -->
108 <!-- ================================== -->
109 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 <!-- Used for permissions that allow an application to send messages
112 on behalf of the user or intercept messages being received by the
113 user. This is primarily intended for SMS/MMS messaging, such as
114 receiving or reading an MMS. -->
115 <permission-group android:name="android.permission-group.MESSAGES"
116 android:label="@string/permgrouplab_messages"
117 android:description="@string/permgroupdesc_messages" />
118
119 <!-- Allows an application to monitor incoming SMS messages, to record
120 or perform processing on them. -->
121 <permission android:name="android.permission.RECEIVE_SMS"
122 android:permissionGroup="android.permission-group.MESSAGES"
123 android:protectionLevel="dangerous"
124 android:label="@string/permlab_receiveSms"
125 android:description="@string/permdesc_receiveSms" />
126
127 <!-- Allows an application to monitor incoming MMS messages, to record
128 or perform processing on them. -->
129 <permission android:name="android.permission.RECEIVE_MMS"
130 android:permissionGroup="android.permission-group.MESSAGES"
131 android:protectionLevel="dangerous"
132 android:label="@string/permlab_receiveMms"
133 android:description="@string/permdesc_receiveMms" />
134
135 <!-- Allows an application to read SMS messages. -->
136 <permission android:name="android.permission.READ_SMS"
137 android:permissionGroup="android.permission-group.MESSAGES"
138 android:protectionLevel="dangerous"
139 android:label="@string/permlab_readSms"
140 android:description="@string/permdesc_readSms" />
141
142 <!-- Allows an application to write SMS messages. -->
143 <permission android:name="android.permission.WRITE_SMS"
144 android:permissionGroup="android.permission-group.MESSAGES"
145 android:protectionLevel="dangerous"
146 android:label="@string/permlab_writeSms"
147 android:description="@string/permdesc_writeSms" />
148
149 <!-- Allows an application to monitor incoming WAP push messages. -->
150 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
151 android:permissionGroup="android.permission-group.MESSAGES"
152 android:protectionLevel="dangerous"
153 android:label="@string/permlab_receiveWapPush"
154 android:description="@string/permdesc_receiveWapPush" />
155
156 <!-- =============================================================== -->
157 <!-- Permissions for accessing personal info (contacts and calendar) -->
158 <!-- =============================================================== -->
159 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 <!-- Used for permissions that provide access to the user's private data,
162 such as contacts, calendar events, e-mail messages, etc. This includes
163 both reading and writing of this data (which should generally be
164 expressed as two distinct permissions). -->
165 <permission-group android:name="android.permission-group.PERSONAL_INFO"
166 android:label="@string/permgrouplab_personalInfo"
167 android:description="@string/permgroupdesc_personalInfo" />
168
169 <!-- Allows an application to read the user's contacts data. -->
170 <permission android:name="android.permission.READ_CONTACTS"
171 android:permissionGroup="android.permission-group.PERSONAL_INFO"
172 android:protectionLevel="dangerous"
173 android:label="@string/permlab_readContacts"
174 android:description="@string/permdesc_readContacts" />
175
176 <!-- Allows an application to write (but not read) the user's
177 contacts data. -->
178 <permission android:name="android.permission.WRITE_CONTACTS"
179 android:permissionGroup="android.permission-group.PERSONAL_INFO"
180 android:protectionLevel="dangerous"
181 android:label="@string/permlab_writeContacts"
182 android:description="@string/permdesc_writeContacts" />
183
184 <!-- Allows an application to read the owner's data. -->
185 <permission android:name="android.permission.READ_OWNER_DATA"
186 android:permissionGroup="android.permission-group.PERSONAL_INFO"
187 android:protectionLevel="dangerous"
188 android:label="@string/permlab_readOwnerData"
189 android:description="@string/permdesc_readOwnerData" />
190
191 <!-- Allows an application to write (but not read) the owner's data. -->
192 <permission android:name="android.permission.WRITE_OWNER_DATA"
193 android:permissionGroup="android.permission-group.PERSONAL_INFO"
194 android:protectionLevel="dangerous"
195 android:label="@string/permlab_writeOwnerData"
196 android:description="@string/permdesc_writeOwnerData" />
197
198 <!-- Allows an application to read the user's calendar data. -->
199 <permission android:name="android.permission.READ_CALENDAR"
200 android:permissionGroup="android.permission-group.PERSONAL_INFO"
201 android:protectionLevel="dangerous"
202 android:label="@string/permlab_readCalendar"
203 android:description="@string/permdesc_readCalendar" />
204
205 <!-- Allows an application to write (but not read) the user's
206 calendar data. -->
207 <permission android:name="android.permission.WRITE_CALENDAR"
208 android:permissionGroup="android.permission-group.PERSONAL_INFO"
209 android:protectionLevel="dangerous"
210 android:label="@string/permlab_writeCalendar"
211 android:description="@string/permdesc_writeCalendar" />
212
213 <!-- Allows an application to read the user dictionary. This should
Fred Quintana60307342009-03-24 22:48:12 -0700214 really only be required by an IME, or a dictionary editor like
215 the Settings app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 @hide Pending API council approval -->
217 <permission android:name="android.permission.READ_USER_DICTIONARY"
218 android:permissionGroup="android.permission-group.PERSONAL_INFO"
219 android:protectionLevel="dangerous"
220 android:label="@string/permlab_readDictionary"
221 android:description="@string/permdesc_readDictionary" />
222
223 <!-- Allows an application to write to the user dictionary.
224 @hide Pending API council approval -->
225 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
226 android:permissionGroup="android.permission-group.PERSONAL_INFO"
227 android:protectionLevel="normal"
228 android:label="@string/permlab_writeDictionary"
229 android:description="@string/permdesc_writeDictionary" />
230
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400231 <!-- Allows an application to read (but not write) the user's
232 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400233 <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400234 android:permissionGroup="android.permission-group.PERSONAL_INFO"
235 android:label="@string/permlab_readHistoryBookmarks"
236 android:description="@string/permdesc_readHistoryBookmarks"
237 android:protectionLevel="dangerous" />
238
239 <!-- Allows an application to write (but not read) the user's
240 browsing history and bookmarks. -->
Leon Scrogginse7d1c8f2009-07-27 11:10:28 -0400241 <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
Leon Scroggins9ce4c6c2009-06-19 14:13:08 -0400242 android:permissionGroup="android.permission-group.PERSONAL_INFO"
243 android:label="@string/permlab_writeHistoryBookmarks"
244 android:description="@string/permdesc_writeHistoryBookmarks"
245 android:protectionLevel="dangerous" />
246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 <!-- ======================================= -->
248 <!-- Permissions for accessing location info -->
249 <!-- ======================================= -->
250 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 <!-- Used for permissions that allow access to the user's current
253 location. -->
254 <permission-group android:name="android.permission-group.LOCATION"
255 android:label="@string/permgrouplab_location"
256 android:description="@string/permgroupdesc_location" />
257
258 <!-- Allows an application to access fine (e.g., GPS) location -->
259 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
260 android:permissionGroup="android.permission-group.LOCATION"
261 android:protectionLevel="dangerous"
262 android:label="@string/permlab_accessFineLocation"
263 android:description="@string/permdesc_accessFineLocation" />
264
265 <!-- Allows an application to access coarse (e.g., Cell-ID, WiFi) location -->
266 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
267 android:permissionGroup="android.permission-group.LOCATION"
268 android:protectionLevel="dangerous"
269 android:label="@string/permlab_accessCoarseLocation"
270 android:description="@string/permdesc_accessCoarseLocation" />
271
272 <!-- Allows an application to create mock location providers for testing -->
273 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
274 android:permissionGroup="android.permission-group.LOCATION"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700275 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 android:label="@string/permlab_accessMockLocation"
277 android:description="@string/permdesc_accessMockLocation" />
278
279 <!-- Allows an application to access extra location provider commands -->
280 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
281 android:permissionGroup="android.permission-group.LOCATION"
Dianne Hackborn935ae462009-04-13 16:11:55 -0700282 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 android:label="@string/permlab_accessLocationExtraCommands"
284 android:description="@string/permdesc_accessLocationExtraCommands" />
285
Mike Lockwood275555c2009-05-01 11:30:34 -0400286 <!-- Allows an application to install a location provider into the Location Manager -->
287 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
288 android:protectionLevel="signatureOrSystem"
289 android:label="@string/permlab_installLocationProvider"
290 android:description="@string/permdesc_installLocationProvider" />
291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 <!-- ======================================= -->
293 <!-- Permissions for accessing networks -->
294 <!-- ======================================= -->
295 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700296
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 <!-- Used for permissions that provide access to networking services. The
298 main permission here is internet access, but this is also an
299 appropriate group for accessing or modifying any network configuration
300 or other related network operations. -->
301 <permission-group android:name="android.permission-group.NETWORK"
302 android:label="@string/permgrouplab_network"
303 android:description="@string/permgroupdesc_network" />
304
305 <!-- Allows applications to open network sockets. -->
306 <permission android:name="android.permission.INTERNET"
307 android:permissionGroup="android.permission-group.NETWORK"
308 android:protectionLevel="dangerous"
309 android:description="@string/permdesc_createNetworkSockets"
310 android:label="@string/permlab_createNetworkSockets" />
311
312 <!-- Allows applications to access information about networks -->
313 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
314 android:permissionGroup="android.permission-group.NETWORK"
315 android:protectionLevel="normal"
316 android:description="@string/permdesc_accessNetworkState"
317 android:label="@string/permlab_accessNetworkState" />
318
319 <!-- Allows applications to access information about Wi-Fi networks -->
320 <permission android:name="android.permission.ACCESS_WIFI_STATE"
321 android:permissionGroup="android.permission-group.NETWORK"
322 android:protectionLevel="normal"
323 android:description="@string/permdesc_accessWifiState"
324 android:label="@string/permlab_accessWifiState" />
325
326 <!-- Allows applications to connect to paired bluetooth devices -->
327 <permission android:name="android.permission.BLUETOOTH"
328 android:permissionGroup="android.permission-group.NETWORK"
329 android:protectionLevel="dangerous"
330 android:description="@string/permdesc_bluetooth"
331 android:label="@string/permlab_bluetooth" />
332
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700333 <!-- Allows applications to call into AccountAuthenticators. Only
334 the system can get this permission. -->
Fred Quintanaf7ae77c2009-10-02 17:19:31 -0700335 <permission android:name="android.permission.ACCOUNT_MANAGER"
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700336 android:permissionGroup="android.permission-group.ACCOUNTS"
337 android:protectionLevel="signature"
338 android:description="@string/permdesc_accountManagerService"
339 android:label="@string/permlab_accountManagerService" />
340
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 <!-- ================================== -->
342 <!-- Permissions for accessing accounts -->
343 <!-- ================================== -->
344 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700345
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700346 <!-- Permissions for direct access to the accounts managed
347 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 <permission-group android:name="android.permission-group.ACCOUNTS"
349 android:label="@string/permgrouplab_accounts"
350 android:description="@string/permgroupdesc_accounts" />
351
352 <!-- Allows access to the list of accounts in the Accounts Service -->
353 <permission android:name="android.permission.GET_ACCOUNTS"
354 android:permissionGroup="android.permission-group.ACCOUNTS"
355 android:protectionLevel="normal"
356 android:description="@string/permdesc_getAccounts"
357 android:label="@string/permlab_getAccounts" />
358
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700359 <!-- Allows an application to act as an AccountAuthenticator for
360 the AccountManager -->
361 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
362 android:permissionGroup="android.permission-group.ACCOUNTS"
363 android:protectionLevel="dangerous"
364 android:label="@string/permlab_authenticateAccounts"
365 android:description="@string/permdesc_authenticateAccounts" />
366
367 <!-- Allows an application to request authtokens from the AccountManager -->
368 <permission android:name="android.permission.USE_CREDENTIALS"
369 android:permissionGroup="android.permission-group.ACCOUNTS"
370 android:protectionLevel="dangerous"
371 android:label="@string/permlab_useCredentials"
372 android:description="@string/permdesc_useCredentials" />
373
374 <!-- Allows an application to manage the list of accounts in the AccountManager -->
375 <permission android:name="android.permission.MANAGE_ACCOUNTS"
376 android:permissionGroup="android.permission-group.ACCOUNTS"
377 android:protectionLevel="dangerous"
378 android:label="@string/permlab_manageAccounts"
379 android:description="@string/permdesc_manageAccounts" />
380
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 <!-- ================================== -->
382 <!-- Permissions for accessing hardware -->
383 <!-- ================================== -->
384 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 <!-- Used for permissions that provide direct access to the hardware on
387 the device. This includes audio, the camera, vibrator, etc. -->
388 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
389 android:label="@string/permgrouplab_hardwareControls"
390 android:description="@string/permgroupdesc_hardwareControls" />
391
392 <!-- Allows an application to modify global audio settings -->
393 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
394 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
395 android:protectionLevel="dangerous"
396 android:label="@string/permlab_modifyAudioSettings"
397 android:description="@string/permdesc_modifyAudioSettings" />
398
399 <!-- Allows an application to record audio -->
400 <permission android:name="android.permission.RECORD_AUDIO"
401 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
402 android:protectionLevel="dangerous"
403 android:label="@string/permlab_recordAudio"
404 android:description="@string/permdesc_recordAudio" />
405
Scott Main0b916352009-12-17 18:01:04 -0800406 <!-- Required to be able to access the camera device.
407 <p>This will automatically enforce the <a
408 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
409 &lt;uses-feature&gt;}</a> manifest element for <em>all</em> camera features.
410 If you do not require all camera features or can properly operate if a camera
411 is not available, then you must modify your manifest as appropriate in order to
412 install on devices that don't support all camera features.</p> -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 <permission android:name="android.permission.CAMERA"
414 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
415 android:protectionLevel="dangerous"
416 android:label="@string/permlab_camera"
417 android:description="@string/permdesc_camera" />
418
419 <!-- Allows access to the vibrator -->
420 <permission android:name="android.permission.VIBRATE"
421 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
422 android:protectionLevel="normal"
423 android:label="@string/permlab_vibrate"
424 android:description="@string/permdesc_vibrate" />
425
426 <!-- Allows access to the flashlight -->
427 <permission android:name="android.permission.FLASHLIGHT"
428 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
429 android:protectionLevel="normal"
430 android:label="@string/permlab_flashlight"
431 android:description="@string/permdesc_flashlight" />
432
433 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
434 <permission android:name="android.permission.HARDWARE_TEST"
435 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
436 android:protectionLevel="signature"
437 android:label="@string/permlab_hardware_test"
438 android:description="@string/permdesc_hardware_test" />
439
440 <!-- =========================================== -->
441 <!-- Permissions associated with telephony state -->
442 <!-- =========================================== -->
443 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 <!-- Used for permissions that are associated with accessing and modifyign
446 telephony state: intercepting outgoing calls, reading
447 and modifying the phone state. Note that
448 placing phone calls is not in this group, since that is in the
449 more important "takin' yer moneys" group. -->
450 <permission-group android:name="android.permission-group.PHONE_CALLS"
451 android:label="@string/permgrouplab_phoneCalls"
452 android:description="@string/permgroupdesc_phoneCalls" />
453
454 <!-- Allows an application to monitor, modify, or abort outgoing
455 calls. -->
456 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
457 android:permissionGroup="android.permission-group.PHONE_CALLS"
458 android:protectionLevel="dangerous"
459 android:label="@string/permlab_processOutgoingCalls"
460 android:description="@string/permdesc_processOutgoingCalls" />
461
462 <!-- Allows modification of the telephony state - power on, mmi, etc.
463 Does not include placing calls. -->
464 <permission android:name="android.permission.MODIFY_PHONE_STATE"
465 android:permissionGroup="android.permission-group.PHONE_CALLS"
466 android:protectionLevel="dangerous"
467 android:label="@string/permlab_modifyPhoneState"
468 android:description="@string/permdesc_modifyPhoneState" />
469
470 <!-- Allows read only access to phone state. -->
471 <permission android:name="android.permission.READ_PHONE_STATE"
472 android:permissionGroup="android.permission-group.PHONE_CALLS"
473 android:protectionLevel="dangerous"
474 android:label="@string/permlab_readPhoneState"
475 android:description="@string/permdesc_readPhoneState" />
476
San Mehat29b57e62009-04-23 09:18:32 -0700477 <!-- ================================== -->
478 <!-- Permissions for sdcard interaction -->
479 <!-- ================================== -->
480 <eat-comment />
481
482 <!-- Group of permissions that are related to SD card access. -->
483 <permission-group android:name="android.permission-group.STORAGE"
484 android:label="@string/permgrouplab_storage"
485 android:description="@string/permgroupdesc_storage" />
486
San Mehat5a3a77d2009-06-01 09:25:28 -0700487 <!-- Allows an application to write to external storage -->
488 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -0700489 android:permissionGroup="android.permission-group.STORAGE"
490 android:label="@string/permlab_sdcardWrite"
491 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -0700492 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -0700493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 <!-- ============================================ -->
495 <!-- Permissions for low-level system interaction -->
496 <!-- ============================================ -->
497 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700498
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 <!-- Group of permissions that are related to system APIs. Many
500 of these are not permissions the user will be expected to understand,
501 and such permissions should generally be marked as "normal" protection
502 level so they don't get displayed. This can also, however, be used
503 for miscellaneous features that provide access to the operating system,
504 such as writing the global system settings. -->
505 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
506 android:label="@string/permgrouplab_systemTools"
507 android:description="@string/permgroupdesc_systemTools" />
508
509 <!-- Allows an application to read or write the system settings. -->
510 <permission android:name="android.permission.WRITE_SETTINGS"
511 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
512 android:protectionLevel="dangerous"
513 android:label="@string/permlab_writeSettings"
514 android:description="@string/permdesc_writeSettings" />
515
516 <!-- Allows an application to read or write the secure system settings. -->
517 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
518 android:protectionLevel="signatureOrSystem"
519 android:label="@string/permlab_writeSecureSettings"
520 android:description="@string/permdesc_writeSecureSettings" />
521
522 <!-- Allows an application to modify the Google service map. -->
523 <permission android:name="android.permission.WRITE_GSERVICES"
Dan Egnorac63ebc2009-11-12 23:02:22 -0800524 android:protectionLevel="signatureOrSystem"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 android:label="@string/permlab_writeGservices"
526 android:description="@string/permdesc_writeGservices" />
527
528 <!-- Allows an application to expand or collapse the status bar. -->
529 <permission android:name="android.permission.EXPAND_STATUS_BAR"
530 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
531 android:protectionLevel="normal"
532 android:label="@string/permlab_expandStatusBar"
533 android:description="@string/permdesc_expandStatusBar" />
534
535 <!-- Allows an application to get information about the currently
536 or recently running tasks: a thumbnail representation of the tasks,
537 what activities are running in it, etc. -->
538 <permission android:name="android.permission.GET_TASKS"
539 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
540 android:protectionLevel="dangerous"
541 android:label="@string/permlab_getTasks"
542 android:description="@string/permdesc_getTasks" />
543
544 <!-- Allows an application to change the Z-order of tasks -->
545 <permission android:name="android.permission.REORDER_TASKS"
546 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
547 android:protectionLevel="dangerous"
548 android:label="@string/permlab_reorderTasks"
549 android:description="@string/permdesc_reorderTasks" />
550
551 <!-- Allows an application to modify the current configuration, such
552 as locale. -->
553 <permission android:name="android.permission.CHANGE_CONFIGURATION"
554 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
555 android:protectionLevel="dangerous"
556 android:label="@string/permlab_changeConfiguration"
557 android:description="@string/permdesc_changeConfiguration" />
558
Dianne Hackborn03abb812010-01-04 18:43:19 -0800559 <!-- @deprecated The {@link android.app.ActivityManager#restartPackage}
560 API is no longer supported. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 <permission android:name="android.permission.RESTART_PACKAGES"
562 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackborn03abb812010-01-04 18:43:19 -0800563 android:protectionLevel="normal"
564 android:label="@string/permlab_killBackgroundProcesses"
565 android:description="@string/permdesc_killBackgroundProcesses" />
566
567 <!-- Allows an application to call
568 {@link android.app.ActivityManager#killBackgroundProcesses}. -->
569 <permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"
570 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
571 android:protectionLevel="normal"
572 android:label="@string/permlab_killBackgroundProcesses"
573 android:description="@string/permdesc_killBackgroundProcesses" />
574
575 <!-- Allows an application to call
576 {@link android.app.ActivityManager#forceStopPackage}.
577 @hide -->
578 <permission android:name="android.permission.FORCE_STOP_PACKAGES"
579 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
580 android:protectionLevel="signature"
581 android:label="@string/permlab_forceStopPackages"
582 android:description="@string/permdesc_forceStopPackages" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800583
584 <!-- Allows an application to retrieve state dump information from system
585 services. -->
586 <permission android:name="android.permission.DUMP"
587 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
588 android:protectionLevel="dangerous"
589 android:label="@string/permlab_dump"
590 android:description="@string/permdesc_dump" />
591
592 <!-- Allows an application to open windows using the type
593 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
594 shown on top of all other applications. Very few applications
595 should use this permission; these windows are intended for
596 system-level interaction with the user. -->
597 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
598 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
599 android:protectionLevel="dangerous"
600 android:label="@string/permlab_systemAlertWindow"
601 android:description="@string/permdesc_systemAlertWindow" />
602
603 <!-- Modify the global animation scaling factor. -->
604 <permission android:name="android.permission.SET_ANIMATION_SCALE"
605 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
606 android:protectionLevel="dangerous"
607 android:label="@string/permlab_setAnimationScale"
608 android:description="@string/permdesc_setAnimationScale" />
609
610 <!-- Allow an application to make its activities persistent. -->
611 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
612 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
613 android:protectionLevel="dangerous"
614 android:label="@string/permlab_persistentActivity"
615 android:description="@string/permdesc_persistentActivity" />
616
617 <!-- Allows an application to find out the space used by any package. -->
618 <permission android:name="android.permission.GET_PACKAGE_SIZE"
619 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
620 android:protectionLevel="normal"
621 android:label="@string/permlab_getPackageSize"
622 android:description="@string/permdesc_getPackageSize" />
623
Dianne Hackborna7ca0e52009-12-01 14:31:55 -0800624 <!-- @deprecated No longer useful, see
625 {@link android.content.pm.PackageManager#addPackageToPreferred}
626 for details. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
628 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
629 android:protectionLevel="dangerous"
630 android:label="@string/permlab_setPreferredApplications"
631 android:description="@string/permdesc_setPreferredApplications" />
632
633 <!-- Allows an application to receive the
634 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
635 broadcast after the system finishes booting. If you don't
636 request this permission, you will not receive the broadcast at
637 that time. Though holding this permission does not have any
638 security implications, it can have a negative impact on the
639 user experience by increasing the amount of time it takes the
640 system to start and allowing applications to have themselves
641 running without the user being aware of them. As such, you must
642 explicitly declare your use of this facility to make that visible
643 to the user. -->
644 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
645 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
646 android:protectionLevel="normal"
647 android:label="@string/permlab_receiveBootCompleted"
648 android:description="@string/permdesc_receiveBootCompleted" />
649
650 <!-- Allows an application to broadcast sticky intents. These are
651 broadcasts whose data is held by the system after being finished,
652 so that clients can quickly retrieve that data without having
653 to wait for the next broadcast. -->
654 <permission android:name="android.permission.BROADCAST_STICKY"
655 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
656 android:protectionLevel="normal"
657 android:label="@string/permlab_broadcastSticky"
658 android:description="@string/permdesc_broadcastSticky" />
659
660 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
661 from dimming -->
662 <permission android:name="android.permission.WAKE_LOCK"
663 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
664 android:protectionLevel="dangerous"
665 android:label="@string/permlab_wakeLock"
666 android:description="@string/permdesc_wakeLock" />
667
668 <!-- Allows applications to set the wallpaper -->
669 <permission android:name="android.permission.SET_WALLPAPER"
670 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
671 android:protectionLevel="normal"
672 android:label="@string/permlab_setWallpaper"
673 android:description="@string/permdesc_setWallpaper" />
674
675 <!-- Allows applications to set the wallpaper hints -->
676 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
677 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
678 android:protectionLevel="normal"
679 android:label="@string/permlab_setWallpaperHints"
680 android:description="@string/permdesc_setWallpaperHints" />
681
Dan Egnor97e44942010-02-04 20:27:47 -0800682 <!-- Allows applications to set the system time -->
683 <permission android:name="android.permission.SET_TIME"
684 android:protectionLevel="signatureOrSystem"
685 android:label="@string/permlab_setTime"
686 android:description="@string/permdesc_setTime" />
687
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800688 <!-- Allows applications to set the system time zone -->
689 <permission android:name="android.permission.SET_TIME_ZONE"
690 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
691 android:protectionLevel="dangerous"
692 android:label="@string/permlab_setTimeZone"
693 android:description="@string/permdesc_setTimeZone" />
694
695 <!-- Allows mounting and unmounting file systems for removable storage. -->
696 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
697 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
698 android:protectionLevel="dangerous"
699 android:label="@string/permlab_mount_unmount_filesystems"
700 android:description="@string/permdesc_mount_unmount_filesystems" />
701
702 <!-- Allows formatting file systems for removable storage. -->
703 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
704 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
705 android:protectionLevel="dangerous"
706 android:label="@string/permlab_mount_format_filesystems"
707 android:description="@string/permdesc_mount_format_filesystems" />
708
San Mehat02735bc2010-01-26 15:18:08 -0800709 <!-- Allows access to ASEC non-destructive API calls
710 @hide -->
711 <permission android:name="android.permission.ASEC_ACCESS"
712 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
713 android:protectionLevel="dangerous"
714 android:label="@string/permlab_asec_access"
715 android:description="@string/permdesc_asec_access" />
716
717 <!-- Allows creation of ASEC volumes
718 @hide -->
719 <permission android:name="android.permission.ASEC_CREATE"
720 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
721 android:protectionLevel="dangerous"
722 android:label="@string/permlab_asec_create"
723 android:description="@string/permdesc_asec_create" />
724
725 <!-- Allows destruction of ASEC volumes
726 @hide -->
727 <permission android:name="android.permission.ASEC_DESTROY"
728 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
729 android:protectionLevel="dangerous"
730 android:label="@string/permlab_asec_destroy"
731 android:description="@string/permdesc_asec_destroy" />
732
733 <!-- Allows mount / unmount of ASEC volumes
734 @hide -->
735 <permission android:name="android.permission.ASEC_MOUNT_UNMOUNT"
736 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
737 android:protectionLevel="dangerous"
738 android:label="@string/permlab_asec_mount_unmount"
739 android:description="@string/permdesc_asec_mount_unmount" />
740
741 <!-- Allows rename of ASEC volumes
742 @hide -->
743 <permission android:name="android.permission.ASEC_RENAME"
744 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
745 android:protectionLevel="dangerous"
746 android:label="@string/permlab_asec_rename"
747 android:description="@string/permdesc_asec_rename" />
748
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 <!-- Allows applications to disable the keyguard -->
750 <permission android:name="android.permission.DISABLE_KEYGUARD"
751 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
752 android:protectionLevel="normal"
753 android:description="@string/permdesc_disableKeyguard"
754 android:label="@string/permlab_disableKeyguard" />
755
756 <!-- Allows applications to read the sync settings -->
757 <permission android:name="android.permission.READ_SYNC_SETTINGS"
758 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
759 android:protectionLevel="normal"
760 android:description="@string/permdesc_readSyncSettings"
761 android:label="@string/permlab_readSyncSettings" />
762
763 <!-- Allows applications to write the sync settings -->
764 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
765 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
766 android:protectionLevel="dangerous"
767 android:description="@string/permdesc_writeSyncSettings"
768 android:label="@string/permlab_writeSyncSettings" />
769
770 <!-- Allows applications to read the sync stats -->
771 <permission android:name="android.permission.READ_SYNC_STATS"
772 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
773 android:protectionLevel="normal"
774 android:description="@string/permdesc_readSyncStats"
775 android:label="@string/permlab_readSyncStats" />
776
777 <!-- Allows applications to write the apn settings -->
778 <permission android:name="android.permission.WRITE_APN_SETTINGS"
779 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
780 android:protectionLevel="dangerous"
781 android:description="@string/permdesc_writeApnSettings"
782 android:label="@string/permlab_writeApnSettings" />
783
Fred Quintana60307342009-03-24 22:48:12 -0700784 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 ContentProvider. -->
786 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
787 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
788 android:label="@string/permlab_subscribedFeedsRead"
789 android:description="@string/permdesc_subscribedFeedsRead"
790 android:protectionLevel="normal" />
791 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
792 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
793 android:label="@string/permlab_subscribedFeedsWrite"
794 android:description="@string/permdesc_subscribedFeedsWrite"
795 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -0700796
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800797 <!-- Allows applications to change network connectivity state -->
798 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
799 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
800 android:protectionLevel="dangerous"
801 android:description="@string/permdesc_changeNetworkState"
802 android:label="@string/permlab_changeNetworkState" />
803
804 <!-- Allows applications to change Wi-Fi connectivity state -->
805 <permission android:name="android.permission.CHANGE_WIFI_STATE"
806 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
807 android:protectionLevel="dangerous"
808 android:description="@string/permdesc_changeWifiState"
809 android:label="@string/permlab_changeWifiState" />
810
Robert Greenwaltfc1b15c2009-05-22 15:09:51 -0700811 <!-- Allows applications to enter Wi-Fi Multicast mode -->
812 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
813 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
814 android:protectionLevel="dangerous"
815 android:description="@string/permdesc_changeWifiMulticastState"
816 android:label="@string/permlab_changeWifiMulticastState" />
817
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800818 <!-- Allows applications to discover and pair bluetooth devices -->
819 <permission android:name="android.permission.BLUETOOTH_ADMIN"
820 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
821 android:protectionLevel="dangerous"
822 android:description="@string/permdesc_bluetoothAdmin"
823 android:label="@string/permlab_bluetoothAdmin" />
824
825 <!-- Allows an application to clear the caches of all installed
826 applications on the device. -->
827 <permission android:name="android.permission.CLEAR_APP_CACHE"
828 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
829 android:protectionLevel="dangerous"
830 android:label="@string/permlab_clearAppCache"
831 android:description="@string/permdesc_clearAppCache" />
832
833 <!-- Allows an application to read the low-level system log files.
834 These can contain slightly private information about what is
835 happening on the device, but should never contain the user's
836 private information. -->
837 <permission android:name="android.permission.READ_LOGS"
838 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
839 android:protectionLevel="dangerous"
840 android:label="@string/permlab_readLogs"
841 android:description="@string/permdesc_readLogs" />
842
843 <!-- ========================================= -->
844 <!-- Permissions for special development tools -->
845 <!-- ========================================= -->
846 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700847
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 <!-- Group of permissions that are related to development features. These
849 are not permissions that should appear in normal applications; they
850 protect APIs that are intended only to be used for development
851 purposes. -->
852 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
853 android:label="@string/permgrouplab_developmentTools"
854 android:description="@string/permgroupdesc_developmentTools" />
855
856 <!-- Configure an application for debugging. -->
857 <permission android:name="android.permission.SET_DEBUG_APP"
858 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
859 android:protectionLevel="dangerous"
860 android:label="@string/permlab_setDebugApp"
861 android:description="@string/permdesc_setDebugApp" />
862
863 <!-- Allows an application to set the maximum number of (not needed)
864 application processes that can be running. -->
865 <permission android:name="android.permission.SET_PROCESS_LIMIT"
866 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
867 android:protectionLevel="dangerous"
868 android:label="@string/permlab_setProcessLimit"
869 android:description="@string/permdesc_setProcessLimit" />
870
871 <!-- Allows an application to control whether activities are immediately
872 finished when put in the background. -->
873 <permission android:name="android.permission.SET_ALWAYS_FINISH"
874 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
875 android:protectionLevel="dangerous"
876 android:label="@string/permlab_setAlwaysFinish"
877 android:description="@string/permdesc_setAlwaysFinish" />
878
879 <!-- Allow an application to request that a signal be sent to all persistent processes -->
880 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
881 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
882 android:protectionLevel="dangerous"
883 android:label="@string/permlab_signalPersistentProcesses"
884 android:description="@string/permdesc_signalPersistentProcesses" />
885
886 <!-- ==================================== -->
887 <!-- Private (signature-only) permissions -->
888 <!-- ==================================== -->
889 <eat-comment />
890
891 <!-- Allows applications to RW to diagnostic resources. -->
892 <permission android:name="android.permission.DIAGNOSTIC"
893 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
894 android:protectionLevel="signature"
895 android:description="@string/permdesc_diagnostic"
896 android:label="@string/permlab_diagnostic" />
897
898 <!-- Allows an application to open, close, or disable the status bar
899 and its icons. -->
900 <permission android:name="android.permission.STATUS_BAR"
901 android:label="@string/permlab_statusBar"
902 android:description="@string/permdesc_statusBar"
903 android:protectionLevel="signatureOrSystem" />
904
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 <!-- Allows an application to force a BACK operation on whatever is the
906 top activity. -->
907 <permission android:name="android.permission.FORCE_BACK"
908 android:label="@string/permlab_forceBack"
909 android:description="@string/permdesc_forceBack"
910 android:protectionLevel="signature" />
911
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800912 <!-- Allows an application to update device statistics. Not for
913 use by third party apps. -->
914 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
915 android:label="@string/permlab_batteryStats"
916 android:description="@string/permdesc_batteryStats"
917 android:protectionLevel="signature" />
918
919 <!-- Allows an application to open windows that are for use by parts
920 of the system user interface. Not for use by third party apps. -->
921 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
922 android:label="@string/permlab_internalSystemWindow"
923 android:description="@string/permdesc_internalSystemWindow"
924 android:protectionLevel="signature" />
925
926 <!-- Allows an application to manage (create, destroy,
927 Z-order) application tokens in the window manager. This is only
928 for use by the system. -->
929 <permission android:name="android.permission.MANAGE_APP_TOKENS"
930 android:label="@string/permlab_manageAppTokens"
931 android:description="@string/permdesc_manageAppTokens"
932 android:protectionLevel="signature" />
933
934 <!-- Allows an application to inject user events (keys, touch, trackball)
935 into the event stream and deliver them to ANY window. Without this
936 permission, you can only deliver events to windows in your own process.
937 Very few applications should need to use this permission. -->
938 <permission android:name="android.permission.INJECT_EVENTS"
939 android:label="@string/permlab_injectEvents"
940 android:description="@string/permdesc_injectEvents"
941 android:protectionLevel="signature" />
942
943 <!-- Allows an application to watch and control how activities are
944 started globally in the system. Only for is in debugging
945 (usually the monkey command). -->
946 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
947 android:label="@string/permlab_runSetActivityWatcher"
948 android:description="@string/permdesc_runSetActivityWatcher"
949 android:protectionLevel="signature" />
950
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700951 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -0700952 to put the higher-level system there into a shutdown state.
953 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -0700954 <permission android:name="android.permission.SHUTDOWN"
955 android:label="@string/permlab_shutdown"
956 android:description="@string/permdesc_shutdown"
957 android:protectionLevel="signature" />
958
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700959 <!-- Allows an application to tell the activity manager to temporarily
960 stop application switches, putting it into a special mode that
961 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -0700962 critical UI such as the home screen.
963 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700964 <permission android:name="android.permission.STOP_APP_SWITCHES"
965 android:label="@string/permlab_stopAppSwitches"
966 android:description="@string/permdesc_stopAppSwitches"
967 android:protectionLevel="signature" />
968
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969 <!-- Allows an application to retrieve the current state of keys and
970 switches. This is only for use by the system.-->
971 <permission android:name="android.permission.READ_INPUT_STATE"
972 android:label="@string/permlab_readInputState"
973 android:description="@string/permdesc_readInputState"
974 android:protectionLevel="signature" />
975
Dianne Hackbornd6847842010-01-12 18:14:19 -0800976 <!-- Must be required by an {@link android.inputmethodservice.InputMethodService},
977 to ensure that only the system can bind to it. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 <permission android:name="android.permission.BIND_INPUT_METHOD"
979 android:label="@string/permlab_bindInputMethod"
980 android:description="@string/permdesc_bindInputMethod"
981 android:protectionLevel="signature" />
982
Dianne Hackbornd6847842010-01-12 18:14:19 -0800983 <!-- Must be required by a {@link android.service.wallpaper.WallpaperService},
984 to ensure that only the system can bind to it. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700985 <permission android:name="android.permission.BIND_WALLPAPER"
986 android:label="@string/permlab_bindWallpaper"
987 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborn284ac932009-08-28 10:34:25 -0700988 android:protectionLevel="signatureOrSystem" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700989
Dianne Hackbornd6847842010-01-12 18:14:19 -0800990 <!-- Must be required by device administration receiver, to ensure that only the
991 system can interact with it. -->
992 <permission android:name="android.permission.BIND_DEVICE_ADMIN"
993 android:label="@string/permlab_bindDeviceAdmin"
994 android:description="@string/permdesc_bindDeviceAdmin"
995 android:protectionLevel="signature" />
996
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800997 <!-- Allows low-level access to setting the orientation (actually
998 rotation) of the screen. Not for use by normal applications. -->
999 <permission android:name="android.permission.SET_ORIENTATION"
1000 android:label="@string/permlab_setOrientation"
1001 android:description="@string/permdesc_setOrientation"
1002 android:protectionLevel="signature" />
1003
1004 <!-- Allows an application to install packages. -->
1005 <permission android:name="android.permission.INSTALL_PACKAGES"
1006 android:label="@string/permlab_installPackages"
1007 android:description="@string/permdesc_installPackages"
Jasper Lin24692412009-03-24 18:24:57 -07001008 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001009
1010 <!-- Allows an application to clear user data -->
1011 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
1012 android:label="@string/permlab_clearAppUserData"
1013 android:description="@string/permdesc_clearAppUserData"
1014 android:protectionLevel="signature" />
1015
1016 <!-- Allows an application to delete cache files. -->
1017 <permission android:name="android.permission.DELETE_CACHE_FILES"
1018 android:label="@string/permlab_deleteCacheFiles"
1019 android:description="@string/permdesc_deleteCacheFiles"
Doug Zongker50a21f42009-11-19 12:49:53 -08001020 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001021
1022 <!-- Allows an application to delete packages. -->
1023 <permission android:name="android.permission.DELETE_PACKAGES"
1024 android:label="@string/permlab_deletePackages"
1025 android:description="@string/permdesc_deletePackages"
Jasper Lin24692412009-03-24 18:24:57 -07001026 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027
1028 <!-- Allows an application to change whether an application component (other than its own) is
1029 enabled or not. -->
1030 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
1031 android:label="@string/permlab_changeComponentState"
1032 android:description="@string/permdesc_changeComponentState"
1033 android:protectionLevel="signature" />
1034
1035 <!-- Allows an application to use SurfaceFlinger's low level features -->
1036 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
1037 android:label="@string/permlab_accessSurfaceFlinger"
1038 android:description="@string/permdesc_accessSurfaceFlinger"
1039 android:protectionLevel="signature" />
1040
1041 <!-- Allows an application to take screen shots and more generally
1042 get access to the frame buffer data -->
1043 <permission android:name="android.permission.READ_FRAME_BUFFER"
1044 android:label="@string/permlab_readFrameBuffer"
1045 android:description="@string/permdesc_readFrameBuffer"
1046 android:protectionLevel="signature" />
1047
1048 <!-- Required to be able to disable the device (very dangerous!). -->
1049 <permission android:name="android.permission.BRICK"
1050 android:label="@string/permlab_brick"
1051 android:description="@string/permdesc_brick"
1052 android:protectionLevel="signature" />
1053
1054 <!-- Required to be able to reboot the device. -->
1055 <permission android:name="android.permission.REBOOT"
1056 android:label="@string/permlab_reboot"
1057 android:description="@string/permdesc_reboot"
Doug Zongker50a21f42009-11-19 12:49:53 -08001058 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001059
1060 <!-- Allows low-level access to power management -->
1061 <permission android:name="android.permission.DEVICE_POWER"
1062 android:label="@string/permlab_devicePower"
1063 android:description="@string/permdesc_devicePower"
1064 android:protectionLevel="signature" />
1065
1066 <!-- Run as a manufacturer test application, running as the root user.
1067 Only available when the device is running in manufacturer test mode. -->
1068 <permission android:name="android.permission.FACTORY_TEST"
1069 android:label="@string/permlab_factoryTest"
1070 android:description="@string/permdesc_factoryTest"
1071 android:protectionLevel="signature" />
1072
1073 <!-- Allows an application to broadcast a notification that an application
1074 package has been removed. -->
1075 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1076 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1077 android:label="@string/permlab_broadcastPackageRemoved"
1078 android:description="@string/permdesc_broadcastPackageRemoved"
1079 android:protectionLevel="signature" />
1080
1081 <!-- Allows an application to broadcast an SMS receipt notification -->
1082 <permission android:name="android.permission.BROADCAST_SMS"
1083 android:permissionGroup="android.permission-group.MESSAGES"
1084 android:label="@string/permlab_broadcastSmsReceived"
1085 android:description="@string/permdesc_broadcastSmsReceived"
1086 android:protectionLevel="signature" />
1087
1088 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1089 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1090 android:permissionGroup="android.permission-group.MESSAGES"
1091 android:label="@string/permlab_broadcastWapPush"
1092 android:description="@string/permdesc_broadcastWapPush"
1093 android:protectionLevel="signature" />
1094
1095 <permission android:name="android.permission.MASTER_CLEAR"
1096 android:label="@string/permlab_masterClear"
1097 android:description="@string/permdesc_masterClear"
1098 android:protectionLevel="signatureOrSystem" />
1099
1100 <!-- Allows an application to call any phone number, including emergency
1101 numbers, without going through the Dialer user interface for the user
1102 to confirm the call being placed. -->
1103 <permission android:name="android.permission.CALL_PRIVILEGED"
1104 android:label="@string/permlab_callPrivileged"
1105 android:description="@string/permdesc_callPrivileged"
1106 android:protectionLevel="signatureOrSystem" />
1107
Jim Miller767be5f2009-08-25 19:33:57 -07001108 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1109 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1110 android:label="@string/permlab_performCdmaProvisioning"
1111 android:description="@string/permdesc_performCdmaProvisioning"
1112 android:protectionLevel="signatureOrSystem" />
1113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 <!-- Allows enabling/disabling location update notifications from
1115 the radio. Not for use by normal applications. -->
1116 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1117 android:label="@string/permlab_locationUpdates"
1118 android:description="@string/permdesc_locationUpdates"
Mike Lockwood275555c2009-05-01 11:30:34 -04001119 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001120
1121 <!-- Allows read/write access to the "properties" table in the checkin
1122 database, to change values that get uploaded. -->
1123 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1124 android:label="@string/permlab_checkinProperties"
1125 android:description="@string/permdesc_checkinProperties"
Jasper Lin24692412009-03-24 18:24:57 -07001126 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001127
1128 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001129 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1131 android:label="@string/permlab_pkgUsageStats"
1132 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001133 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001134
1135 <!-- Allows an application to collect battery statistics -->
1136 <permission android:name="android.permission.BATTERY_STATS"
1137 android:label="@string/permlab_batteryStats"
1138 android:description="@string/permdesc_batteryStats"
1139 android:protectionLevel="normal" />
1140
Christopher Tate181fafa2009-05-14 11:12:14 -07001141 <!-- Allows an application to control the backup and restore process
1142 @hide pending API council -->
1143 <permission android:name="android.permission.BACKUP"
1144 android:label="@string/permlab_backup"
1145 android:description="@string/permdesc_backup"
Joe Onorato8aeaf2e2009-06-29 14:46:30 -04001146 android:protectionLevel="signatureOrSystem" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001147
Christopher Tate0749dcd2009-08-13 15:13:03 -07001148 <!-- Allows an application to participate in the backup and restore process
1149 @hide -->
1150 <permission android:name="android.permission.BACKUP_DATA"
1151 android:label="@string/permlab_backup_data"
1152 android:description="@string/permdesc_backup_data"
1153 android:protectionLevel="signatureOrSystem" />
1154
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001155 <!-- Allows an application to tell the AppWidget service which application
1156 can access AppWidget's data. The normal user flow is that a user
1157 picks an AppWidget to go into a particular host, thereby giving that
1158 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001159 An application that has this permission should honor that contract.
1160 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001161 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001162 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1163 android:label="@string/permlab_bindGadget"
1164 android:description="@string/permdesc_bindGadget"
Jeff Sharkeyaf999282009-05-18 14:35:49 -07001165 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166
1167 <!-- Allows applications to change the background data setting
1168 @hide pending API council -->
1169 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
1170 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1171 android:protectionLevel="signature"
1172 android:description="@string/permdesc_changeBackgroundDataSetting"
1173 android:label="@string/permlab_changeBackgroundDataSetting" />
1174
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001175 <!-- This permission can be used on content providers to allow the global
1176 search system to access their data. Typically it used when the
1177 provider has some permissions protecting it (which global search
1178 would not be expected to hold), and added as a read-only permission
1179 to the path in the provider where global search queries are
1180 performed. This permission can not be held by regular applications;
1181 it is used by applications to protect themselves from everyone else
1182 besides global search. -->
1183 <permission android:name="android.permission.GLOBAL_SEARCH"
1184 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1185 android:protectionLevel="signatureOrSystem" />
1186
1187 <!-- Internal permission protecting access to the global search
1188 system: ensures that only the system can access the provider
1189 to perform queries (since this otherwise provides unrestricted
1190 access to a variety of content providers), and to write the
1191 search statistics (to keep applications from gaming the source
1192 ranking).
1193 @hide -->
1194 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
1195 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1196 android:protectionLevel="signature" />
1197
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001198 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001199 @hide XXX Change to signature once the picker is moved to its
1200 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001201 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
1202 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001203 android:protectionLevel="signatureOrSystem" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001204
Doug Zongker6e99b7a2010-01-06 15:02:52 -08001205 <!-- Allow an application to read and write the cache partition. -->
1206 <permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"
1207 android:label="@string/permlab_cache_filesystem"
1208 android:description="@string/permdesc_cache_filesystem"
1209 android:protectionLevel="signatureOrSystem" />
1210
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08001211 <!-- Must be required by default container service so that only
1212 the system can bind to it and use it to copy
1213 protected data to secure containers or files
1214 accessible to the system.
1215 @hide -->
1216 <permission android:name="android.permission.COPY_PROTECTED_DATA"
1217 android:label="@string/permlab_copyProtectedData"
1218 android:description="@string/permlab_copyProtectedData"
1219 android:protectionLevel="signature" />
1220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001221 <application android:process="system"
1222 android:persistent="true"
1223 android:hasCode="false"
1224 android:label="@string/android_system_label"
1225 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07001226 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07001227 android:killAfterRestore="false"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001228 android:icon="@drawable/ic_launcher_android">
1229 <activity android:name="com.android.internal.app.ChooserActivity"
1230 android:theme="@style/Theme.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07001231 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 android:excludeFromRecents="true"
1233 android:multiprocess="true">
1234 <intent-filter>
1235 <action android:name="android.intent.action.CHOOSER" />
1236 <category android:name="android.intent.category.DEFAULT" />
1237 </intent-filter>
1238 </activity>
1239 <activity android:name="com.android.internal.app.RingtonePickerActivity"
1240 android:theme="@style/Theme.Dialog.Alert"
1241 android:excludeFromRecents="true"
1242 android:multiprocess="true">
1243 <intent-filter>
1244 <action android:name="android.intent.action.RINGTONE_PICKER" />
1245 <category android:name="android.intent.category.DEFAULT" />
1246 </intent-filter>
1247 </activity>
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001248 <activity android:name="com.android.internal.app.TetherActivity"
1249 android:theme="@style/Theme.Dialog.Alert"
1250 android:excludeFromRecents="true">
1251 </activity>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001252 <activity android:name="com.android.internal.app.UsbStorageActivity"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001253 android:excludeFromRecents="true">
1254 </activity>
1255 <activity android:name="com.android.internal.app.UsbStorageStopActivity"
1256 android:theme="@style/Theme.Dialog.Alert"
1257 android:excludeFromRecents="true">
1258 </activity>
1259 <activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
1260 android:theme="@style/Theme.Dialog.Alert"
1261 android:excludeFromRecents="true">
1262 </activity>
1263
Fred Quintana33269202009-04-20 16:05:10 -07001264 <activity android:name="android.accounts.ChooseAccountActivity"
1265 android:excludeFromRecents="true"
1266 android:exported="true">
1267 </activity>
1268
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001269 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
1270 android:excludeFromRecents="true"
1271 android:exported="true">
1272 </activity>
1273
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001274 <activity android:name="com.android.server.ShutdownActivity"
1275 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07001276 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001277 <intent-filter>
1278 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
1279 <category android:name="android.intent.category.DEFAULT" />
1280 </intent-filter>
1281 </activity>
Danke Xie22d1f9f2009-08-18 18:28:45 -04001282 <activity android:name="com.android.internal.app.NetInitiatedActivity"
1283 android:theme="@style/Theme.Dialog.Alert"
1284 android:excludeFromRecents="true">
1285 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 <service android:name="com.android.server.LoadAverageService"
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001288 android:exported="true" />
1289
1290 <service android:name="com.android.internal.service.wallpaper.ImageWallpaper"
1291 android:permission="android.permission.BIND_WALLPAPER">
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001292 </service>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293
1294 <receiver android:name="com.android.server.BootReceiver" >
1295 <intent-filter>
1296 <action android:name="android.intent.action.BOOT_COMPLETED" />
1297 </intent-filter>
1298 </receiver>
1299
1300 <receiver android:name="com.android.server.MasterClearReceiver"
1301 android:permission="android.permission.MASTER_CLEAR" >
1302 <intent-filter>
Wei Huang97ecc9c2009-05-11 17:44:20 -07001303 <action android:name="android.intent.action.REMOTE_INTENT" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 <category android:name="android.intent.category.MASTER_CLEAR" />
1305 </intent-filter>
1306 </receiver>
1307 </application>
1308
1309</manifest>
1310
1311