blob: caa1318fbac9cf46d0372d7d1531912d0cb35c37 [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
24 <!-- ====================================== -->
25 <!-- Permissions for things that cost money -->
26 <!-- ====================================== -->
27 <eat-comment />
28
29 <!-- Used for permissions that can be used to make the user spend money
30 without their direct involvement. For example, this is the group
31 for permissions that allow you to directly place phone calls,
32 directly send SMS messages, etc. -->
33 <permission-group android:name="android.permission-group.COST_MONEY"
34 android:label="@string/permgrouplab_costMoney"
35 android:description="@string/permgroupdesc_costMoney" />
36
37 <!-- Allows an application to send SMS messages. -->
38 <permission android:name="android.permission.SEND_SMS"
39 android:permissionGroup="android.permission-group.COST_MONEY"
40 android:protectionLevel="dangerous"
41 android:label="@string/permlab_sendSms"
42 android:description="@string/permdesc_sendSms" />
43
44 <!-- Allows an application to initiate a phone call without going through
45 the Dialer user interface for the user to confirm the call
46 being placed. -->
47 <permission android:name="android.permission.CALL_PHONE"
48 android:permissionGroup="android.permission-group.COST_MONEY"
49 android:protectionLevel="dangerous"
50 android:label="@string/permlab_callPhone"
51 android:description="@string/permdesc_callPhone" />
52
53 <!-- ================================== -->
54 <!-- Permissions for accessing messages -->
55 <!-- ================================== -->
56 <eat-comment />
57
58 <!-- Used for permissions that allow an application to send messages
59 on behalf of the user or intercept messages being received by the
60 user. This is primarily intended for SMS/MMS messaging, such as
61 receiving or reading an MMS. -->
62 <permission-group android:name="android.permission-group.MESSAGES"
63 android:label="@string/permgrouplab_messages"
64 android:description="@string/permgroupdesc_messages" />
65
66 <!-- Allows an application to monitor incoming SMS messages, to record
67 or perform processing on them. -->
68 <permission android:name="android.permission.RECEIVE_SMS"
69 android:permissionGroup="android.permission-group.MESSAGES"
70 android:protectionLevel="dangerous"
71 android:label="@string/permlab_receiveSms"
72 android:description="@string/permdesc_receiveSms" />
73
74 <!-- Allows an application to monitor incoming MMS messages, to record
75 or perform processing on them. -->
76 <permission android:name="android.permission.RECEIVE_MMS"
77 android:permissionGroup="android.permission-group.MESSAGES"
78 android:protectionLevel="dangerous"
79 android:label="@string/permlab_receiveMms"
80 android:description="@string/permdesc_receiveMms" />
81
82 <!-- Allows an application to read SMS messages. -->
83 <permission android:name="android.permission.READ_SMS"
84 android:permissionGroup="android.permission-group.MESSAGES"
85 android:protectionLevel="dangerous"
86 android:label="@string/permlab_readSms"
87 android:description="@string/permdesc_readSms" />
88
89 <!-- Allows an application to write SMS messages. -->
90 <permission android:name="android.permission.WRITE_SMS"
91 android:permissionGroup="android.permission-group.MESSAGES"
92 android:protectionLevel="dangerous"
93 android:label="@string/permlab_writeSms"
94 android:description="@string/permdesc_writeSms" />
95
96 <!-- Allows an application to monitor incoming WAP push messages. -->
97 <permission android:name="android.permission.RECEIVE_WAP_PUSH"
98 android:permissionGroup="android.permission-group.MESSAGES"
99 android:protectionLevel="dangerous"
100 android:label="@string/permlab_receiveWapPush"
101 android:description="@string/permdesc_receiveWapPush" />
102
103 <!-- =============================================================== -->
104 <!-- Permissions for accessing personal info (contacts and calendar) -->
105 <!-- =============================================================== -->
106 <eat-comment />
107
108 <!-- Used for permissions that provide access to the user's private data,
109 such as contacts, calendar events, e-mail messages, etc. This includes
110 both reading and writing of this data (which should generally be
111 expressed as two distinct permissions). -->
112 <permission-group android:name="android.permission-group.PERSONAL_INFO"
113 android:label="@string/permgrouplab_personalInfo"
114 android:description="@string/permgroupdesc_personalInfo" />
115
116 <!-- Allows an application to read the user's contacts data. -->
117 <permission android:name="android.permission.READ_CONTACTS"
118 android:permissionGroup="android.permission-group.PERSONAL_INFO"
119 android:protectionLevel="dangerous"
120 android:label="@string/permlab_readContacts"
121 android:description="@string/permdesc_readContacts" />
122
123 <!-- Allows an application to write (but not read) the user's
124 contacts data. -->
125 <permission android:name="android.permission.WRITE_CONTACTS"
126 android:permissionGroup="android.permission-group.PERSONAL_INFO"
127 android:protectionLevel="dangerous"
128 android:label="@string/permlab_writeContacts"
129 android:description="@string/permdesc_writeContacts" />
130
131 <!-- Allows an application to read the owner's data. -->
132 <permission android:name="android.permission.READ_OWNER_DATA"
133 android:permissionGroup="android.permission-group.PERSONAL_INFO"
134 android:protectionLevel="dangerous"
135 android:label="@string/permlab_readOwnerData"
136 android:description="@string/permdesc_readOwnerData" />
137
138 <!-- Allows an application to write (but not read) the owner's data. -->
139 <permission android:name="android.permission.WRITE_OWNER_DATA"
140 android:permissionGroup="android.permission-group.PERSONAL_INFO"
141 android:protectionLevel="dangerous"
142 android:label="@string/permlab_writeOwnerData"
143 android:description="@string/permdesc_writeOwnerData" />
144
145 <!-- Allows an application to read the user's calendar data. -->
146 <permission android:name="android.permission.READ_CALENDAR"
147 android:permissionGroup="android.permission-group.PERSONAL_INFO"
148 android:protectionLevel="dangerous"
149 android:label="@string/permlab_readCalendar"
150 android:description="@string/permdesc_readCalendar" />
151
152 <!-- Allows an application to write (but not read) the user's
153 calendar data. -->
154 <permission android:name="android.permission.WRITE_CALENDAR"
155 android:permissionGroup="android.permission-group.PERSONAL_INFO"
156 android:protectionLevel="dangerous"
157 android:label="@string/permlab_writeCalendar"
158 android:description="@string/permdesc_writeCalendar" />
159
160 <!-- Allows an application to read the user dictionary. This should
161 really only be required by an IME, or a dictionary editor like
162 the Settings app.
163 @hide Pending API council approval -->
164 <permission android:name="android.permission.READ_USER_DICTIONARY"
165 android:permissionGroup="android.permission-group.PERSONAL_INFO"
166 android:protectionLevel="dangerous"
167 android:label="@string/permlab_readDictionary"
168 android:description="@string/permdesc_readDictionary" />
169
170 <!-- Allows an application to write to the user dictionary.
171 @hide Pending API council approval -->
172 <permission android:name="android.permission.WRITE_USER_DICTIONARY"
173 android:permissionGroup="android.permission-group.PERSONAL_INFO"
174 android:protectionLevel="normal"
175 android:label="@string/permlab_writeDictionary"
176 android:description="@string/permdesc_writeDictionary" />
177
178 <!-- ======================================= -->
179 <!-- Permissions for accessing location info -->
180 <!-- ======================================= -->
181 <eat-comment />
182
183 <!-- Used for permissions that allow access to the user's current
184 location. -->
185 <permission-group android:name="android.permission-group.LOCATION"
186 android:label="@string/permgrouplab_location"
187 android:description="@string/permgroupdesc_location" />
188
189 <!-- Allows an application to access fine (e.g., GPS) location -->
190 <permission android:name="android.permission.ACCESS_FINE_LOCATION"
191 android:permissionGroup="android.permission-group.LOCATION"
192 android:protectionLevel="dangerous"
193 android:label="@string/permlab_accessFineLocation"
194 android:description="@string/permdesc_accessFineLocation" />
195
196 <!-- Allows an application to access coarse (e.g., Cell-ID, WiFi) location -->
197 <permission android:name="android.permission.ACCESS_COARSE_LOCATION"
198 android:permissionGroup="android.permission-group.LOCATION"
199 android:protectionLevel="dangerous"
200 android:label="@string/permlab_accessCoarseLocation"
201 android:description="@string/permdesc_accessCoarseLocation" />
202
203 <!-- Allows an application to create mock location providers for testing -->
204 <permission android:name="android.permission.ACCESS_MOCK_LOCATION"
205 android:permissionGroup="android.permission-group.LOCATION"
Andy Stadlerf8a7cea2009-04-10 16:24:47 -0700206 android:protectionLevel="dangerous"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 android:label="@string/permlab_accessMockLocation"
208 android:description="@string/permdesc_accessMockLocation" />
209
210 <!-- Allows an application to access extra location provider commands -->
211 <permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"
212 android:permissionGroup="android.permission-group.LOCATION"
Andy Stadlerf8a7cea2009-04-10 16:24:47 -0700213 android:protectionLevel="normal"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 android:label="@string/permlab_accessLocationExtraCommands"
215 android:description="@string/permdesc_accessLocationExtraCommands" />
216
217 <!-- ======================================= -->
218 <!-- Permissions for accessing networks -->
219 <!-- ======================================= -->
220 <eat-comment />
221
222 <!-- Used for permissions that provide access to networking services. The
223 main permission here is internet access, but this is also an
224 appropriate group for accessing or modifying any network configuration
225 or other related network operations. -->
226 <permission-group android:name="android.permission-group.NETWORK"
227 android:label="@string/permgrouplab_network"
228 android:description="@string/permgroupdesc_network" />
229
230 <!-- Allows applications to open network sockets. -->
231 <permission android:name="android.permission.INTERNET"
232 android:permissionGroup="android.permission-group.NETWORK"
233 android:protectionLevel="dangerous"
234 android:description="@string/permdesc_createNetworkSockets"
235 android:label="@string/permlab_createNetworkSockets" />
236
237 <!-- Allows applications to access information about networks -->
238 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
239 android:permissionGroup="android.permission-group.NETWORK"
240 android:protectionLevel="normal"
241 android:description="@string/permdesc_accessNetworkState"
242 android:label="@string/permlab_accessNetworkState" />
243
244 <!-- Allows applications to access information about Wi-Fi networks -->
245 <permission android:name="android.permission.ACCESS_WIFI_STATE"
246 android:permissionGroup="android.permission-group.NETWORK"
247 android:protectionLevel="normal"
248 android:description="@string/permdesc_accessWifiState"
249 android:label="@string/permlab_accessWifiState" />
250
251 <!-- Allows applications to connect to paired bluetooth devices -->
252 <permission android:name="android.permission.BLUETOOTH"
253 android:permissionGroup="android.permission-group.NETWORK"
254 android:protectionLevel="dangerous"
255 android:description="@string/permdesc_bluetooth"
256 android:label="@string/permlab_bluetooth" />
257
258 <!-- ================================== -->
259 <!-- Permissions for accessing accounts -->
260 <!-- ================================== -->
261 <eat-comment />
262
263 <!-- Permissions for direct access to Google accounts.
264 Note that while right now this is only used for Google accounts,
265 we expect in the future to have a more general account management
266 facility so this is specified as a general platform permission
267 group for accessing accounts. -->
268 <permission-group android:name="android.permission-group.ACCOUNTS"
269 android:label="@string/permgrouplab_accounts"
270 android:description="@string/permgroupdesc_accounts" />
271
272 <!-- Allows access to the list of accounts in the Accounts Service -->
273 <permission android:name="android.permission.GET_ACCOUNTS"
274 android:permissionGroup="android.permission-group.ACCOUNTS"
275 android:protectionLevel="normal"
276 android:description="@string/permdesc_getAccounts"
277 android:label="@string/permlab_getAccounts" />
278
279 <!-- ================================== -->
280 <!-- Permissions for accessing hardware -->
281 <!-- ================================== -->
282 <eat-comment />
283
284 <!-- Used for permissions that provide direct access to the hardware on
285 the device. This includes audio, the camera, vibrator, etc. -->
286 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
287 android:label="@string/permgrouplab_hardwareControls"
288 android:description="@string/permgroupdesc_hardwareControls" />
289
290 <!-- Allows an application to modify global audio settings -->
291 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
292 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
293 android:protectionLevel="dangerous"
294 android:label="@string/permlab_modifyAudioSettings"
295 android:description="@string/permdesc_modifyAudioSettings" />
296
297 <!-- Allows an application to record audio -->
298 <permission android:name="android.permission.RECORD_AUDIO"
299 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
300 android:protectionLevel="dangerous"
301 android:label="@string/permlab_recordAudio"
302 android:description="@string/permdesc_recordAudio" />
303
304 <!-- Required to be able to access the camera device. -->
305 <permission android:name="android.permission.CAMERA"
306 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
307 android:protectionLevel="dangerous"
308 android:label="@string/permlab_camera"
309 android:description="@string/permdesc_camera" />
310
311 <!-- Allows access to the vibrator -->
312 <permission android:name="android.permission.VIBRATE"
313 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
314 android:protectionLevel="normal"
315 android:label="@string/permlab_vibrate"
316 android:description="@string/permdesc_vibrate" />
317
318 <!-- Allows access to the flashlight -->
319 <permission android:name="android.permission.FLASHLIGHT"
320 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
321 android:protectionLevel="normal"
322 android:label="@string/permlab_flashlight"
323 android:description="@string/permdesc_flashlight" />
324
325 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
326 <permission android:name="android.permission.HARDWARE_TEST"
327 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
328 android:protectionLevel="signature"
329 android:label="@string/permlab_hardware_test"
330 android:description="@string/permdesc_hardware_test" />
331
332 <!-- =========================================== -->
333 <!-- Permissions associated with telephony state -->
334 <!-- =========================================== -->
335 <eat-comment />
336
337 <!-- Used for permissions that are associated with accessing and modifyign
338 telephony state: intercepting outgoing calls, reading
339 and modifying the phone state. Note that
340 placing phone calls is not in this group, since that is in the
341 more important "takin' yer moneys" group. -->
342 <permission-group android:name="android.permission-group.PHONE_CALLS"
343 android:label="@string/permgrouplab_phoneCalls"
344 android:description="@string/permgroupdesc_phoneCalls" />
345
346 <!-- Allows an application to monitor, modify, or abort outgoing
347 calls. -->
348 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
349 android:permissionGroup="android.permission-group.PHONE_CALLS"
350 android:protectionLevel="dangerous"
351 android:label="@string/permlab_processOutgoingCalls"
352 android:description="@string/permdesc_processOutgoingCalls" />
353
354 <!-- Allows modification of the telephony state - power on, mmi, etc.
355 Does not include placing calls. -->
356 <permission android:name="android.permission.MODIFY_PHONE_STATE"
357 android:permissionGroup="android.permission-group.PHONE_CALLS"
358 android:protectionLevel="dangerous"
359 android:label="@string/permlab_modifyPhoneState"
360 android:description="@string/permdesc_modifyPhoneState" />
361
362 <!-- Allows read only access to phone state. -->
363 <permission android:name="android.permission.READ_PHONE_STATE"
364 android:permissionGroup="android.permission-group.PHONE_CALLS"
365 android:protectionLevel="dangerous"
366 android:label="@string/permlab_readPhoneState"
367 android:description="@string/permdesc_readPhoneState" />
368
San Mehat29b57e62009-04-23 09:18:32 -0700369 <!-- ================================== -->
370 <!-- Permissions for sdcard interaction -->
371 <!-- ================================== -->
372 <eat-comment />
373
374 <!-- Group of permissions that are related to SD card access. -->
375 <permission-group android:name="android.permission-group.STORAGE"
376 android:label="@string/permgrouplab_storage"
377 android:description="@string/permgroupdesc_storage" />
378
379 <!-- Allows an application to write to the SD card -->
380 <permission android:name="android.permission.SDCARD_WRITE"
381 android:permissionGroup="android.permission-group.STORAGE"
382 android:label="@string/permlab_sdcardWrite"
383 android:description="@string/permdesc_sdcardWrite"
384 android:protectionLevel="normal" />
385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 <!-- ============================================ -->
387 <!-- Permissions for low-level system interaction -->
388 <!-- ============================================ -->
389 <eat-comment />
390
391 <!-- Group of permissions that are related to system APIs. Many
392 of these are not permissions the user will be expected to understand,
393 and such permissions should generally be marked as "normal" protection
394 level so they don't get displayed. This can also, however, be used
395 for miscellaneous features that provide access to the operating system,
396 such as writing the global system settings. -->
397 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
398 android:label="@string/permgrouplab_systemTools"
399 android:description="@string/permgroupdesc_systemTools" />
400
401 <!-- Allows an application to read or write the system settings. -->
402 <permission android:name="android.permission.WRITE_SETTINGS"
403 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
404 android:protectionLevel="dangerous"
405 android:label="@string/permlab_writeSettings"
406 android:description="@string/permdesc_writeSettings" />
407
408 <!-- Allows an application to read or write the secure system settings. -->
409 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
410 android:protectionLevel="signatureOrSystem"
411 android:label="@string/permlab_writeSecureSettings"
412 android:description="@string/permdesc_writeSecureSettings" />
413
414 <!-- Allows an application to modify the Google service map. -->
415 <permission android:name="android.permission.WRITE_GSERVICES"
416 android:protectionLevel="signature"
417 android:label="@string/permlab_writeGservices"
418 android:description="@string/permdesc_writeGservices" />
419
420 <!-- Allows an application to expand or collapse the status bar. -->
421 <permission android:name="android.permission.EXPAND_STATUS_BAR"
422 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
423 android:protectionLevel="normal"
424 android:label="@string/permlab_expandStatusBar"
425 android:description="@string/permdesc_expandStatusBar" />
426
427 <!-- Allows an application to get information about the currently
428 or recently running tasks: a thumbnail representation of the tasks,
429 what activities are running in it, etc. -->
430 <permission android:name="android.permission.GET_TASKS"
431 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
432 android:protectionLevel="dangerous"
433 android:label="@string/permlab_getTasks"
434 android:description="@string/permdesc_getTasks" />
435
436 <!-- Allows an application to change the Z-order of tasks -->
437 <permission android:name="android.permission.REORDER_TASKS"
438 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
439 android:protectionLevel="dangerous"
440 android:label="@string/permlab_reorderTasks"
441 android:description="@string/permdesc_reorderTasks" />
442
443 <!-- Allows an application to modify the current configuration, such
444 as locale. -->
445 <permission android:name="android.permission.CHANGE_CONFIGURATION"
446 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
447 android:protectionLevel="dangerous"
448 android:label="@string/permlab_changeConfiguration"
449 android:description="@string/permdesc_changeConfiguration" />
450
451 <!-- Allows an application to restart other applications. -->
452 <permission android:name="android.permission.RESTART_PACKAGES"
453 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
454 android:protectionLevel="dangerous"
455 android:label="@string/permlab_restartPackages"
456 android:description="@string/permdesc_restartPackages" />
457
458 <!-- Allows an application to retrieve state dump information from system
459 services. -->
460 <permission android:name="android.permission.DUMP"
461 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
462 android:protectionLevel="dangerous"
463 android:label="@string/permlab_dump"
464 android:description="@string/permdesc_dump" />
465
466 <!-- Allows an application to open windows using the type
467 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
468 shown on top of all other applications. Very few applications
469 should use this permission; these windows are intended for
470 system-level interaction with the user. -->
471 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
472 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
473 android:protectionLevel="dangerous"
474 android:label="@string/permlab_systemAlertWindow"
475 android:description="@string/permdesc_systemAlertWindow" />
476
477 <!-- Modify the global animation scaling factor. -->
478 <permission android:name="android.permission.SET_ANIMATION_SCALE"
479 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
480 android:protectionLevel="dangerous"
481 android:label="@string/permlab_setAnimationScale"
482 android:description="@string/permdesc_setAnimationScale" />
483
484 <!-- Allow an application to make its activities persistent. -->
485 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
486 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
487 android:protectionLevel="dangerous"
488 android:label="@string/permlab_persistentActivity"
489 android:description="@string/permdesc_persistentActivity" />
490
491 <!-- Allows an application to find out the space used by any package. -->
492 <permission android:name="android.permission.GET_PACKAGE_SIZE"
493 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
494 android:protectionLevel="normal"
495 android:label="@string/permlab_getPackageSize"
496 android:description="@string/permdesc_getPackageSize" />
497
498 <!-- Allows an application to modify the list of preferred applications
499 with the {@link android.content.pm.PackageManager#addPackageToPreferred
500 PackageManager.addPackageToPreferred()} and
501 {@link android.content.pm.PackageManager#removePackageFromPreferred
502 PackageManager.removePackageFromPreferred()} methods. -->
503 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
504 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
505 android:protectionLevel="dangerous"
506 android:label="@string/permlab_setPreferredApplications"
507 android:description="@string/permdesc_setPreferredApplications" />
508
509 <!-- Allows an application to receive the
510 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
511 broadcast after the system finishes booting. If you don't
512 request this permission, you will not receive the broadcast at
513 that time. Though holding this permission does not have any
514 security implications, it can have a negative impact on the
515 user experience by increasing the amount of time it takes the
516 system to start and allowing applications to have themselves
517 running without the user being aware of them. As such, you must
518 explicitly declare your use of this facility to make that visible
519 to the user. -->
520 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
521 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
522 android:protectionLevel="normal"
523 android:label="@string/permlab_receiveBootCompleted"
524 android:description="@string/permdesc_receiveBootCompleted" />
525
526 <!-- Allows an application to broadcast sticky intents. These are
527 broadcasts whose data is held by the system after being finished,
528 so that clients can quickly retrieve that data without having
529 to wait for the next broadcast. -->
530 <permission android:name="android.permission.BROADCAST_STICKY"
531 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
532 android:protectionLevel="normal"
533 android:label="@string/permlab_broadcastSticky"
534 android:description="@string/permdesc_broadcastSticky" />
535
536 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
537 from dimming -->
538 <permission android:name="android.permission.WAKE_LOCK"
539 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
540 android:protectionLevel="dangerous"
541 android:label="@string/permlab_wakeLock"
542 android:description="@string/permdesc_wakeLock" />
543
544 <!-- Allows applications to set the wallpaper -->
545 <permission android:name="android.permission.SET_WALLPAPER"
546 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
547 android:protectionLevel="normal"
548 android:label="@string/permlab_setWallpaper"
549 android:description="@string/permdesc_setWallpaper" />
550
551 <!-- Allows applications to set the wallpaper hints -->
552 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
553 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
554 android:protectionLevel="normal"
555 android:label="@string/permlab_setWallpaperHints"
556 android:description="@string/permdesc_setWallpaperHints" />
557
558 <!-- Allows applications to set the system time zone -->
559 <permission android:name="android.permission.SET_TIME_ZONE"
560 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
561 android:protectionLevel="dangerous"
562 android:label="@string/permlab_setTimeZone"
563 android:description="@string/permdesc_setTimeZone" />
564
565 <!-- Allows mounting and unmounting file systems for removable storage. -->
566 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
567 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
568 android:protectionLevel="dangerous"
569 android:label="@string/permlab_mount_unmount_filesystems"
570 android:description="@string/permdesc_mount_unmount_filesystems" />
571
572 <!-- Allows formatting file systems for removable storage. -->
573 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
574 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
575 android:protectionLevel="dangerous"
576 android:label="@string/permlab_mount_format_filesystems"
577 android:description="@string/permdesc_mount_format_filesystems" />
578
579 <!-- Allows applications to disable the keyguard -->
580 <permission android:name="android.permission.DISABLE_KEYGUARD"
581 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
582 android:protectionLevel="normal"
583 android:description="@string/permdesc_disableKeyguard"
584 android:label="@string/permlab_disableKeyguard" />
585
586 <!-- Allows applications to read the sync settings -->
587 <permission android:name="android.permission.READ_SYNC_SETTINGS"
588 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
589 android:protectionLevel="normal"
590 android:description="@string/permdesc_readSyncSettings"
591 android:label="@string/permlab_readSyncSettings" />
592
593 <!-- Allows applications to write the sync settings -->
594 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
595 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
596 android:protectionLevel="dangerous"
597 android:description="@string/permdesc_writeSyncSettings"
598 android:label="@string/permlab_writeSyncSettings" />
599
600 <!-- Allows applications to read the sync stats -->
601 <permission android:name="android.permission.READ_SYNC_STATS"
602 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
603 android:protectionLevel="normal"
604 android:description="@string/permdesc_readSyncStats"
605 android:label="@string/permlab_readSyncStats" />
606
607 <!-- Allows applications to write the apn settings -->
608 <permission android:name="android.permission.WRITE_APN_SETTINGS"
609 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
610 android:protectionLevel="dangerous"
611 android:description="@string/permdesc_writeApnSettings"
612 android:label="@string/permlab_writeApnSettings" />
613
614 <!-- Allows an application to allow access the subscribed feeds
615 ContentProvider. -->
616 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
617 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
618 android:label="@string/permlab_subscribedFeedsRead"
619 android:description="@string/permdesc_subscribedFeedsRead"
620 android:protectionLevel="normal" />
621 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
622 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
623 android:label="@string/permlab_subscribedFeedsWrite"
624 android:description="@string/permdesc_subscribedFeedsWrite"
625 android:protectionLevel="dangerous" />
626
627 <!-- Allows applications to change network connectivity state -->
628 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
629 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
630 android:protectionLevel="dangerous"
631 android:description="@string/permdesc_changeNetworkState"
632 android:label="@string/permlab_changeNetworkState" />
633
634 <!-- Allows applications to change Wi-Fi connectivity state -->
635 <permission android:name="android.permission.CHANGE_WIFI_STATE"
636 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
637 android:protectionLevel="dangerous"
638 android:description="@string/permdesc_changeWifiState"
639 android:label="@string/permlab_changeWifiState" />
640
641 <!-- Allows applications to discover and pair bluetooth devices -->
642 <permission android:name="android.permission.BLUETOOTH_ADMIN"
643 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
644 android:protectionLevel="dangerous"
645 android:description="@string/permdesc_bluetoothAdmin"
646 android:label="@string/permlab_bluetoothAdmin" />
647
648 <!-- Allows an application to clear the caches of all installed
649 applications on the device. -->
650 <permission android:name="android.permission.CLEAR_APP_CACHE"
651 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
652 android:protectionLevel="dangerous"
653 android:label="@string/permlab_clearAppCache"
654 android:description="@string/permdesc_clearAppCache" />
655
656 <!-- Allows an application to read the low-level system log files.
657 These can contain slightly private information about what is
658 happening on the device, but should never contain the user's
659 private information. -->
660 <permission android:name="android.permission.READ_LOGS"
661 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
662 android:protectionLevel="dangerous"
663 android:label="@string/permlab_readLogs"
664 android:description="@string/permdesc_readLogs" />
665
666 <!-- ========================================= -->
667 <!-- Permissions for special development tools -->
668 <!-- ========================================= -->
669 <eat-comment />
670
671 <!-- Group of permissions that are related to development features. These
672 are not permissions that should appear in normal applications; they
673 protect APIs that are intended only to be used for development
674 purposes. -->
675 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
676 android:label="@string/permgrouplab_developmentTools"
677 android:description="@string/permgroupdesc_developmentTools" />
678
679 <!-- Configure an application for debugging. -->
680 <permission android:name="android.permission.SET_DEBUG_APP"
681 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
682 android:protectionLevel="dangerous"
683 android:label="@string/permlab_setDebugApp"
684 android:description="@string/permdesc_setDebugApp" />
685
686 <!-- Allows an application to set the maximum number of (not needed)
687 application processes that can be running. -->
688 <permission android:name="android.permission.SET_PROCESS_LIMIT"
689 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
690 android:protectionLevel="dangerous"
691 android:label="@string/permlab_setProcessLimit"
692 android:description="@string/permdesc_setProcessLimit" />
693
694 <!-- Allows an application to control whether activities are immediately
695 finished when put in the background. -->
696 <permission android:name="android.permission.SET_ALWAYS_FINISH"
697 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
698 android:protectionLevel="dangerous"
699 android:label="@string/permlab_setAlwaysFinish"
700 android:description="@string/permdesc_setAlwaysFinish" />
701
702 <!-- Allow an application to request that a signal be sent to all persistent processes -->
703 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
704 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
705 android:protectionLevel="dangerous"
706 android:label="@string/permlab_signalPersistentProcesses"
707 android:description="@string/permdesc_signalPersistentProcesses" />
708
709 <!-- ==================================== -->
710 <!-- Private (signature-only) permissions -->
711 <!-- ==================================== -->
712 <eat-comment />
713
714 <!-- Allows applications to RW to diagnostic resources. -->
715 <permission android:name="android.permission.DIAGNOSTIC"
716 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
717 android:protectionLevel="signature"
718 android:description="@string/permdesc_diagnostic"
719 android:label="@string/permlab_diagnostic" />
720
721 <!-- Allows an application to open, close, or disable the status bar
722 and its icons. -->
723 <permission android:name="android.permission.STATUS_BAR"
724 android:label="@string/permlab_statusBar"
725 android:description="@string/permdesc_statusBar"
726 android:protectionLevel="signatureOrSystem" />
727
728 <!-- Allows an application to force any currently running process to be
729 in the foreground. -->
730 <permission android:name="android.permission.SET_PROCESS_FOREGROUND"
731 android:label="@string/permlab_setProcessForeground"
732 android:description="@string/permdesc_setProcessForeground"
733 android:protectionLevel="signature" />
734
735 <!-- Allows an application to force a BACK operation on whatever is the
736 top activity. -->
737 <permission android:name="android.permission.FORCE_BACK"
738 android:label="@string/permlab_forceBack"
739 android:description="@string/permdesc_forceBack"
740 android:protectionLevel="signature" />
741
742 <!-- Allows an application to publish system-level services. Such services
743 can only be published from processes that never go away, so this is
744 not something that any normal application can do. -->
745 <permission android:name="android.permission.ADD_SYSTEM_SERVICE"
746 android:label="@string/permlab_addSystemService"
747 android:description="@string/permdesc_addSystemService"
748 android:protectionLevel="signature" />
749
750 <permission android:name="android.permission.FOTA_UPDATE"
751 android:label="@string/permlab_fotaUpdate"
752 android:description="@string/permdesc_fotaUpdate"
753 android:protectionLevel="signature" />
754
755 <!-- Allows an application to update device statistics. Not for
756 use by third party apps. -->
757 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
758 android:label="@string/permlab_batteryStats"
759 android:description="@string/permdesc_batteryStats"
760 android:protectionLevel="signature" />
761
762 <!-- Allows an application to open windows that are for use by parts
763 of the system user interface. Not for use by third party apps. -->
764 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
765 android:label="@string/permlab_internalSystemWindow"
766 android:description="@string/permdesc_internalSystemWindow"
767 android:protectionLevel="signature" />
768
769 <!-- Allows an application to manage (create, destroy,
770 Z-order) application tokens in the window manager. This is only
771 for use by the system. -->
772 <permission android:name="android.permission.MANAGE_APP_TOKENS"
773 android:label="@string/permlab_manageAppTokens"
774 android:description="@string/permdesc_manageAppTokens"
775 android:protectionLevel="signature" />
776
777 <!-- Allows an application to inject user events (keys, touch, trackball)
778 into the event stream and deliver them to ANY window. Without this
779 permission, you can only deliver events to windows in your own process.
780 Very few applications should need to use this permission. -->
781 <permission android:name="android.permission.INJECT_EVENTS"
782 android:label="@string/permlab_injectEvents"
783 android:description="@string/permdesc_injectEvents"
784 android:protectionLevel="signature" />
785
786 <!-- Allows an application to watch and control how activities are
787 started globally in the system. Only for is in debugging
788 (usually the monkey command). -->
789 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
790 android:label="@string/permlab_runSetActivityWatcher"
791 android:description="@string/permdesc_runSetActivityWatcher"
792 android:protectionLevel="signature" />
793
794 <!-- Allows an application to retrieve the current state of keys and
795 switches. This is only for use by the system.-->
796 <permission android:name="android.permission.READ_INPUT_STATE"
797 android:label="@string/permlab_readInputState"
798 android:description="@string/permdesc_readInputState"
799 android:protectionLevel="signature" />
800
801 <!-- Must be required by input method services, to ensure that only the
802 system can bind to them. -->
803 <permission android:name="android.permission.BIND_INPUT_METHOD"
804 android:label="@string/permlab_bindInputMethod"
805 android:description="@string/permdesc_bindInputMethod"
806 android:protectionLevel="signature" />
807
808 <!-- Allows low-level access to setting the orientation (actually
809 rotation) of the screen. Not for use by normal applications. -->
810 <permission android:name="android.permission.SET_ORIENTATION"
811 android:label="@string/permlab_setOrientation"
812 android:description="@string/permdesc_setOrientation"
813 android:protectionLevel="signature" />
814
815 <!-- Allows an application to install packages. -->
816 <permission android:name="android.permission.INSTALL_PACKAGES"
817 android:label="@string/permlab_installPackages"
818 android:description="@string/permdesc_installPackages"
Jasper Lin77323362009-03-24 18:24:57 -0700819 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820
821 <!-- Allows an application to clear user data -->
822 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
823 android:label="@string/permlab_clearAppUserData"
824 android:description="@string/permdesc_clearAppUserData"
825 android:protectionLevel="signature" />
826
827 <!-- Allows an application to delete cache files. -->
828 <permission android:name="android.permission.DELETE_CACHE_FILES"
829 android:label="@string/permlab_deleteCacheFiles"
830 android:description="@string/permdesc_deleteCacheFiles"
831 android:protectionLevel="signature" />
832
833 <!-- Allows an application to delete packages. -->
834 <permission android:name="android.permission.DELETE_PACKAGES"
835 android:label="@string/permlab_deletePackages"
836 android:description="@string/permdesc_deletePackages"
Jasper Lin77323362009-03-24 18:24:57 -0700837 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838
839 <!-- Allows an application to change whether an application component (other than its own) is
840 enabled or not. -->
841 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
842 android:label="@string/permlab_changeComponentState"
843 android:description="@string/permdesc_changeComponentState"
844 android:protectionLevel="signature" />
845
846 <!-- Allows an application to use SurfaceFlinger's low level features -->
847 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
848 android:label="@string/permlab_accessSurfaceFlinger"
849 android:description="@string/permdesc_accessSurfaceFlinger"
850 android:protectionLevel="signature" />
851
852 <!-- Allows an application to take screen shots and more generally
853 get access to the frame buffer data -->
854 <permission android:name="android.permission.READ_FRAME_BUFFER"
855 android:label="@string/permlab_readFrameBuffer"
856 android:description="@string/permdesc_readFrameBuffer"
857 android:protectionLevel="signature" />
858
859 <!-- Required to be able to disable the device (very dangerous!). -->
860 <permission android:name="android.permission.BRICK"
861 android:label="@string/permlab_brick"
862 android:description="@string/permdesc_brick"
863 android:protectionLevel="signature" />
864
865 <!-- Required to be able to reboot the device. -->
866 <permission android:name="android.permission.REBOOT"
867 android:label="@string/permlab_reboot"
868 android:description="@string/permdesc_reboot"
869 android:protectionLevel="signature" />
870
871 <!-- Allows low-level access to power management -->
872 <permission android:name="android.permission.DEVICE_POWER"
873 android:label="@string/permlab_devicePower"
874 android:description="@string/permdesc_devicePower"
875 android:protectionLevel="signature" />
876
877 <!-- Run as a manufacturer test application, running as the root user.
878 Only available when the device is running in manufacturer test mode. -->
879 <permission android:name="android.permission.FACTORY_TEST"
880 android:label="@string/permlab_factoryTest"
881 android:description="@string/permdesc_factoryTest"
882 android:protectionLevel="signature" />
883
884 <!-- Allows an application to broadcast a notification that an application
885 package has been removed. -->
886 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
887 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
888 android:label="@string/permlab_broadcastPackageRemoved"
889 android:description="@string/permdesc_broadcastPackageRemoved"
890 android:protectionLevel="signature" />
891
892 <!-- Allows an application to broadcast an SMS receipt notification -->
893 <permission android:name="android.permission.BROADCAST_SMS"
894 android:permissionGroup="android.permission-group.MESSAGES"
895 android:label="@string/permlab_broadcastSmsReceived"
896 android:description="@string/permdesc_broadcastSmsReceived"
897 android:protectionLevel="signature" />
898
899 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
900 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
901 android:permissionGroup="android.permission-group.MESSAGES"
902 android:label="@string/permlab_broadcastWapPush"
903 android:description="@string/permdesc_broadcastWapPush"
904 android:protectionLevel="signature" />
905
906 <permission android:name="android.permission.MASTER_CLEAR"
907 android:label="@string/permlab_masterClear"
908 android:description="@string/permdesc_masterClear"
909 android:protectionLevel="signatureOrSystem" />
910
911 <!-- Allows an application to call any phone number, including emergency
912 numbers, without going through the Dialer user interface for the user
913 to confirm the call being placed. -->
914 <permission android:name="android.permission.CALL_PRIVILEGED"
915 android:label="@string/permlab_callPrivileged"
916 android:description="@string/permdesc_callPrivileged"
917 android:protectionLevel="signatureOrSystem" />
918
919 <!-- Allows enabling/disabling location update notifications from
920 the radio. Not for use by normal applications. -->
921 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
922 android:label="@string/permlab_locationUpdates"
923 android:description="@string/permdesc_locationUpdates"
924 android:protectionLevel="signature" />
925
926 <!-- Allows read/write access to the "properties" table in the checkin
927 database, to change values that get uploaded. -->
928 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
929 android:label="@string/permlab_checkinProperties"
930 android:description="@string/permdesc_checkinProperties"
Jasper Lin77323362009-03-24 18:24:57 -0700931 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932
933 <!-- Allows an application to collect component usage
Dianne Hackborn7d1e5772009-03-24 22:47:09 -0700934 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800935 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
936 android:label="@string/permlab_pkgUsageStats"
937 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborn7d1e5772009-03-24 22:47:09 -0700938 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939
940 <!-- Allows an application to collect battery statistics -->
941 <permission android:name="android.permission.BATTERY_STATS"
942 android:label="@string/permlab_batteryStats"
943 android:description="@string/permdesc_batteryStats"
944 android:protectionLevel="normal" />
945
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700946 <!-- Allows an application to tell the AppWidget service which application
947 can access AppWidget's data. The normal user flow is that a user
948 picks an AppWidget to go into a particular host, thereby giving that
949 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 An application that has this permission should honor that contract.
951 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700952 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 android:permissionGroup="android.permission-group.PERSONAL_INFO"
954 android:label="@string/permlab_bindGadget"
955 android:description="@string/permdesc_bindGadget"
956 android:protectionLevel="signature" />
957
958 <!-- Allows applications to change the background data setting
959 @hide pending API council -->
960 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
961 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
962 android:protectionLevel="signature"
963 android:description="@string/permdesc_changeBackgroundDataSetting"
964 android:label="@string/permlab_changeBackgroundDataSetting" />
965
966 <application android:process="system"
967 android:persistent="true"
968 android:hasCode="false"
969 android:label="@string/android_system_label"
970 android:allowClearUserData="false"
971 android:icon="@drawable/ic_launcher_android">
972 <activity android:name="com.android.internal.app.ChooserActivity"
973 android:theme="@style/Theme.Dialog.Alert"
974 android:excludeFromRecents="true"
975 android:multiprocess="true">
976 <intent-filter>
977 <action android:name="android.intent.action.CHOOSER" />
978 <category android:name="android.intent.category.DEFAULT" />
979 </intent-filter>
980 </activity>
981 <activity android:name="com.android.internal.app.RingtonePickerActivity"
982 android:theme="@style/Theme.Dialog.Alert"
983 android:excludeFromRecents="true"
984 android:multiprocess="true">
985 <intent-filter>
986 <action android:name="android.intent.action.RINGTONE_PICKER" />
987 <category android:name="android.intent.category.DEFAULT" />
988 </intent-filter>
989 </activity>
990 <activity android:name="com.android.internal.app.UsbStorageActivity"
991 android:theme="@style/Theme.Dialog.Alert"
992 android:excludeFromRecents="true">
993 </activity>
994 <activity android:name="com.android.internal.app.UsbStorageStopActivity"
995 android:theme="@style/Theme.Dialog.Alert"
996 android:excludeFromRecents="true">
997 </activity>
998 <activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
999 android:theme="@style/Theme.Dialog.Alert"
1000 android:excludeFromRecents="true">
1001 </activity>
1002
1003 <provider android:name=".content.SyncProvider"
1004 android:authorities="sync" android:multiprocess="false" />
1005
1006 <service android:name="com.android.server.LoadAverageService"
1007 android:exported="true" />
1008
1009 <receiver android:name="com.android.server.BootReceiver" >
1010 <intent-filter>
1011 <action android:name="android.intent.action.BOOT_COMPLETED" />
1012 </intent-filter>
1013 </receiver>
1014
1015 <receiver android:name="com.android.server.MasterClearReceiver"
1016 android:permission="android.permission.MASTER_CLEAR" >
1017 <intent-filter>
1018 <action android:name="android.intent.action.GTALK_DATA_MESSAGE_RECEIVED" />
1019 <category android:name="android.intent.category.MASTER_CLEAR" />
1020 </intent-filter>
1021 </receiver>
1022 </application>
1023
1024</manifest>
1025
1026