blob: b105aaa14024827dadf84a016dbe7a99eeea0ebc [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
Mike Lockwood275555c2009-05-01 11:30:34 -0400217 <!-- Allows an application to install a location provider into the Location Manager -->
218 <permission android:name="android.permission.INSTALL_LOCATION_PROVIDER"
219 android:protectionLevel="signatureOrSystem"
220 android:label="@string/permlab_installLocationProvider"
221 android:description="@string/permdesc_installLocationProvider" />
222
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 <!-- ======================================= -->
224 <!-- Permissions for accessing networks -->
225 <!-- ======================================= -->
226 <eat-comment />
227
228 <!-- Used for permissions that provide access to networking services. The
229 main permission here is internet access, but this is also an
230 appropriate group for accessing or modifying any network configuration
231 or other related network operations. -->
232 <permission-group android:name="android.permission-group.NETWORK"
233 android:label="@string/permgrouplab_network"
234 android:description="@string/permgroupdesc_network" />
235
236 <!-- Allows applications to open network sockets. -->
237 <permission android:name="android.permission.INTERNET"
238 android:permissionGroup="android.permission-group.NETWORK"
239 android:protectionLevel="dangerous"
240 android:description="@string/permdesc_createNetworkSockets"
241 android:label="@string/permlab_createNetworkSockets" />
242
243 <!-- Allows applications to access information about networks -->
244 <permission android:name="android.permission.ACCESS_NETWORK_STATE"
245 android:permissionGroup="android.permission-group.NETWORK"
246 android:protectionLevel="normal"
247 android:description="@string/permdesc_accessNetworkState"
248 android:label="@string/permlab_accessNetworkState" />
249
250 <!-- Allows applications to access information about Wi-Fi networks -->
251 <permission android:name="android.permission.ACCESS_WIFI_STATE"
252 android:permissionGroup="android.permission-group.NETWORK"
253 android:protectionLevel="normal"
254 android:description="@string/permdesc_accessWifiState"
255 android:label="@string/permlab_accessWifiState" />
256
257 <!-- Allows applications to connect to paired bluetooth devices -->
258 <permission android:name="android.permission.BLUETOOTH"
259 android:permissionGroup="android.permission-group.NETWORK"
260 android:protectionLevel="dangerous"
261 android:description="@string/permdesc_bluetooth"
262 android:label="@string/permlab_bluetooth" />
263
264 <!-- ================================== -->
265 <!-- Permissions for accessing accounts -->
266 <!-- ================================== -->
267 <eat-comment />
268
269 <!-- Permissions for direct access to Google accounts.
270 Note that while right now this is only used for Google accounts,
271 we expect in the future to have a more general account management
272 facility so this is specified as a general platform permission
273 group for accessing accounts. -->
274 <permission-group android:name="android.permission-group.ACCOUNTS"
275 android:label="@string/permgrouplab_accounts"
276 android:description="@string/permgroupdesc_accounts" />
277
278 <!-- Allows access to the list of accounts in the Accounts Service -->
279 <permission android:name="android.permission.GET_ACCOUNTS"
280 android:permissionGroup="android.permission-group.ACCOUNTS"
281 android:protectionLevel="normal"
282 android:description="@string/permdesc_getAccounts"
283 android:label="@string/permlab_getAccounts" />
284
285 <!-- ================================== -->
286 <!-- Permissions for accessing hardware -->
287 <!-- ================================== -->
288 <eat-comment />
289
290 <!-- Used for permissions that provide direct access to the hardware on
291 the device. This includes audio, the camera, vibrator, etc. -->
292 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
293 android:label="@string/permgrouplab_hardwareControls"
294 android:description="@string/permgroupdesc_hardwareControls" />
295
296 <!-- Allows an application to modify global audio settings -->
297 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
298 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
299 android:protectionLevel="dangerous"
300 android:label="@string/permlab_modifyAudioSettings"
301 android:description="@string/permdesc_modifyAudioSettings" />
302
303 <!-- Allows an application to record audio -->
304 <permission android:name="android.permission.RECORD_AUDIO"
305 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
306 android:protectionLevel="dangerous"
307 android:label="@string/permlab_recordAudio"
308 android:description="@string/permdesc_recordAudio" />
309
310 <!-- Required to be able to access the camera device. -->
311 <permission android:name="android.permission.CAMERA"
312 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
313 android:protectionLevel="dangerous"
314 android:label="@string/permlab_camera"
315 android:description="@string/permdesc_camera" />
316
317 <!-- Allows access to the vibrator -->
318 <permission android:name="android.permission.VIBRATE"
319 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
320 android:protectionLevel="normal"
321 android:label="@string/permlab_vibrate"
322 android:description="@string/permdesc_vibrate" />
323
324 <!-- Allows access to the flashlight -->
325 <permission android:name="android.permission.FLASHLIGHT"
326 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
327 android:protectionLevel="normal"
328 android:label="@string/permlab_flashlight"
329 android:description="@string/permdesc_flashlight" />
330
331 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
332 <permission android:name="android.permission.HARDWARE_TEST"
333 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
334 android:protectionLevel="signature"
335 android:label="@string/permlab_hardware_test"
336 android:description="@string/permdesc_hardware_test" />
337
338 <!-- =========================================== -->
339 <!-- Permissions associated with telephony state -->
340 <!-- =========================================== -->
341 <eat-comment />
342
343 <!-- Used for permissions that are associated with accessing and modifyign
344 telephony state: intercepting outgoing calls, reading
345 and modifying the phone state. Note that
346 placing phone calls is not in this group, since that is in the
347 more important "takin' yer moneys" group. -->
348 <permission-group android:name="android.permission-group.PHONE_CALLS"
349 android:label="@string/permgrouplab_phoneCalls"
350 android:description="@string/permgroupdesc_phoneCalls" />
351
352 <!-- Allows an application to monitor, modify, or abort outgoing
353 calls. -->
354 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
355 android:permissionGroup="android.permission-group.PHONE_CALLS"
356 android:protectionLevel="dangerous"
357 android:label="@string/permlab_processOutgoingCalls"
358 android:description="@string/permdesc_processOutgoingCalls" />
359
360 <!-- Allows modification of the telephony state - power on, mmi, etc.
361 Does not include placing calls. -->
362 <permission android:name="android.permission.MODIFY_PHONE_STATE"
363 android:permissionGroup="android.permission-group.PHONE_CALLS"
364 android:protectionLevel="dangerous"
365 android:label="@string/permlab_modifyPhoneState"
366 android:description="@string/permdesc_modifyPhoneState" />
367
368 <!-- Allows read only access to phone state. -->
369 <permission android:name="android.permission.READ_PHONE_STATE"
370 android:permissionGroup="android.permission-group.PHONE_CALLS"
371 android:protectionLevel="dangerous"
372 android:label="@string/permlab_readPhoneState"
373 android:description="@string/permdesc_readPhoneState" />
374
San Mehat29b57e62009-04-23 09:18:32 -0700375 <!-- ================================== -->
376 <!-- Permissions for sdcard interaction -->
377 <!-- ================================== -->
378 <eat-comment />
379
380 <!-- Group of permissions that are related to SD card access. -->
381 <permission-group android:name="android.permission-group.STORAGE"
382 android:label="@string/permgrouplab_storage"
383 android:description="@string/permgroupdesc_storage" />
384
385 <!-- Allows an application to write to the SD card -->
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700386 <permission android:name="android.permission.WRITE_SDCARD"
San Mehat29b57e62009-04-23 09:18:32 -0700387 android:permissionGroup="android.permission-group.STORAGE"
388 android:label="@string/permlab_sdcardWrite"
389 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700390 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -0700391
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 <!-- ============================================ -->
393 <!-- Permissions for low-level system interaction -->
394 <!-- ============================================ -->
395 <eat-comment />
396
397 <!-- Group of permissions that are related to system APIs. Many
398 of these are not permissions the user will be expected to understand,
399 and such permissions should generally be marked as "normal" protection
400 level so they don't get displayed. This can also, however, be used
401 for miscellaneous features that provide access to the operating system,
402 such as writing the global system settings. -->
403 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
404 android:label="@string/permgrouplab_systemTools"
405 android:description="@string/permgroupdesc_systemTools" />
406
407 <!-- Allows an application to read or write the system settings. -->
408 <permission android:name="android.permission.WRITE_SETTINGS"
409 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
410 android:protectionLevel="dangerous"
411 android:label="@string/permlab_writeSettings"
412 android:description="@string/permdesc_writeSettings" />
413
414 <!-- Allows an application to read or write the secure system settings. -->
415 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
416 android:protectionLevel="signatureOrSystem"
417 android:label="@string/permlab_writeSecureSettings"
418 android:description="@string/permdesc_writeSecureSettings" />
419
420 <!-- Allows an application to modify the Google service map. -->
421 <permission android:name="android.permission.WRITE_GSERVICES"
422 android:protectionLevel="signature"
423 android:label="@string/permlab_writeGservices"
424 android:description="@string/permdesc_writeGservices" />
425
426 <!-- Allows an application to expand or collapse the status bar. -->
427 <permission android:name="android.permission.EXPAND_STATUS_BAR"
428 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
429 android:protectionLevel="normal"
430 android:label="@string/permlab_expandStatusBar"
431 android:description="@string/permdesc_expandStatusBar" />
432
433 <!-- Allows an application to get information about the currently
434 or recently running tasks: a thumbnail representation of the tasks,
435 what activities are running in it, etc. -->
436 <permission android:name="android.permission.GET_TASKS"
437 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
438 android:protectionLevel="dangerous"
439 android:label="@string/permlab_getTasks"
440 android:description="@string/permdesc_getTasks" />
441
442 <!-- Allows an application to change the Z-order of tasks -->
443 <permission android:name="android.permission.REORDER_TASKS"
444 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
445 android:protectionLevel="dangerous"
446 android:label="@string/permlab_reorderTasks"
447 android:description="@string/permdesc_reorderTasks" />
448
449 <!-- Allows an application to modify the current configuration, such
450 as locale. -->
451 <permission android:name="android.permission.CHANGE_CONFIGURATION"
452 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
453 android:protectionLevel="dangerous"
454 android:label="@string/permlab_changeConfiguration"
455 android:description="@string/permdesc_changeConfiguration" />
456
457 <!-- Allows an application to restart other applications. -->
458 <permission android:name="android.permission.RESTART_PACKAGES"
459 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
460 android:protectionLevel="dangerous"
461 android:label="@string/permlab_restartPackages"
462 android:description="@string/permdesc_restartPackages" />
463
464 <!-- Allows an application to retrieve state dump information from system
465 services. -->
466 <permission android:name="android.permission.DUMP"
467 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
468 android:protectionLevel="dangerous"
469 android:label="@string/permlab_dump"
470 android:description="@string/permdesc_dump" />
471
472 <!-- Allows an application to open windows using the type
473 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
474 shown on top of all other applications. Very few applications
475 should use this permission; these windows are intended for
476 system-level interaction with the user. -->
477 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
478 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
479 android:protectionLevel="dangerous"
480 android:label="@string/permlab_systemAlertWindow"
481 android:description="@string/permdesc_systemAlertWindow" />
482
483 <!-- Modify the global animation scaling factor. -->
484 <permission android:name="android.permission.SET_ANIMATION_SCALE"
485 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
486 android:protectionLevel="dangerous"
487 android:label="@string/permlab_setAnimationScale"
488 android:description="@string/permdesc_setAnimationScale" />
489
490 <!-- Allow an application to make its activities persistent. -->
491 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
492 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
493 android:protectionLevel="dangerous"
494 android:label="@string/permlab_persistentActivity"
495 android:description="@string/permdesc_persistentActivity" />
496
497 <!-- Allows an application to find out the space used by any package. -->
498 <permission android:name="android.permission.GET_PACKAGE_SIZE"
499 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
500 android:protectionLevel="normal"
501 android:label="@string/permlab_getPackageSize"
502 android:description="@string/permdesc_getPackageSize" />
503
504 <!-- Allows an application to modify the list of preferred applications
505 with the {@link android.content.pm.PackageManager#addPackageToPreferred
506 PackageManager.addPackageToPreferred()} and
507 {@link android.content.pm.PackageManager#removePackageFromPreferred
508 PackageManager.removePackageFromPreferred()} methods. -->
509 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
510 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
511 android:protectionLevel="dangerous"
512 android:label="@string/permlab_setPreferredApplications"
513 android:description="@string/permdesc_setPreferredApplications" />
514
515 <!-- Allows an application to receive the
516 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
517 broadcast after the system finishes booting. If you don't
518 request this permission, you will not receive the broadcast at
519 that time. Though holding this permission does not have any
520 security implications, it can have a negative impact on the
521 user experience by increasing the amount of time it takes the
522 system to start and allowing applications to have themselves
523 running without the user being aware of them. As such, you must
524 explicitly declare your use of this facility to make that visible
525 to the user. -->
526 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
527 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
528 android:protectionLevel="normal"
529 android:label="@string/permlab_receiveBootCompleted"
530 android:description="@string/permdesc_receiveBootCompleted" />
531
532 <!-- Allows an application to broadcast sticky intents. These are
533 broadcasts whose data is held by the system after being finished,
534 so that clients can quickly retrieve that data without having
535 to wait for the next broadcast. -->
536 <permission android:name="android.permission.BROADCAST_STICKY"
537 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
538 android:protectionLevel="normal"
539 android:label="@string/permlab_broadcastSticky"
540 android:description="@string/permdesc_broadcastSticky" />
541
542 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
543 from dimming -->
544 <permission android:name="android.permission.WAKE_LOCK"
545 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
546 android:protectionLevel="dangerous"
547 android:label="@string/permlab_wakeLock"
548 android:description="@string/permdesc_wakeLock" />
549
550 <!-- Allows applications to set the wallpaper -->
551 <permission android:name="android.permission.SET_WALLPAPER"
552 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
553 android:protectionLevel="normal"
554 android:label="@string/permlab_setWallpaper"
555 android:description="@string/permdesc_setWallpaper" />
556
557 <!-- Allows applications to set the wallpaper hints -->
558 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
559 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
560 android:protectionLevel="normal"
561 android:label="@string/permlab_setWallpaperHints"
562 android:description="@string/permdesc_setWallpaperHints" />
563
564 <!-- Allows applications to set the system time zone -->
565 <permission android:name="android.permission.SET_TIME_ZONE"
566 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
567 android:protectionLevel="dangerous"
568 android:label="@string/permlab_setTimeZone"
569 android:description="@string/permdesc_setTimeZone" />
570
571 <!-- Allows mounting and unmounting file systems for removable storage. -->
572 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
573 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
574 android:protectionLevel="dangerous"
575 android:label="@string/permlab_mount_unmount_filesystems"
576 android:description="@string/permdesc_mount_unmount_filesystems" />
577
578 <!-- Allows formatting file systems for removable storage. -->
579 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
580 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
581 android:protectionLevel="dangerous"
582 android:label="@string/permlab_mount_format_filesystems"
583 android:description="@string/permdesc_mount_format_filesystems" />
584
585 <!-- Allows applications to disable the keyguard -->
586 <permission android:name="android.permission.DISABLE_KEYGUARD"
587 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
588 android:protectionLevel="normal"
589 android:description="@string/permdesc_disableKeyguard"
590 android:label="@string/permlab_disableKeyguard" />
591
592 <!-- Allows applications to read the sync settings -->
593 <permission android:name="android.permission.READ_SYNC_SETTINGS"
594 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
595 android:protectionLevel="normal"
596 android:description="@string/permdesc_readSyncSettings"
597 android:label="@string/permlab_readSyncSettings" />
598
599 <!-- Allows applications to write the sync settings -->
600 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
601 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
602 android:protectionLevel="dangerous"
603 android:description="@string/permdesc_writeSyncSettings"
604 android:label="@string/permlab_writeSyncSettings" />
605
606 <!-- Allows applications to read the sync stats -->
607 <permission android:name="android.permission.READ_SYNC_STATS"
608 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
609 android:protectionLevel="normal"
610 android:description="@string/permdesc_readSyncStats"
611 android:label="@string/permlab_readSyncStats" />
612
613 <!-- Allows applications to write the apn settings -->
614 <permission android:name="android.permission.WRITE_APN_SETTINGS"
615 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
616 android:protectionLevel="dangerous"
617 android:description="@string/permdesc_writeApnSettings"
618 android:label="@string/permlab_writeApnSettings" />
619
620 <!-- Allows an application to allow access the subscribed feeds
621 ContentProvider. -->
622 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
623 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
624 android:label="@string/permlab_subscribedFeedsRead"
625 android:description="@string/permdesc_subscribedFeedsRead"
626 android:protectionLevel="normal" />
627 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
628 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
629 android:label="@string/permlab_subscribedFeedsWrite"
630 android:description="@string/permdesc_subscribedFeedsWrite"
631 android:protectionLevel="dangerous" />
632
633 <!-- Allows applications to change network connectivity state -->
634 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
635 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
636 android:protectionLevel="dangerous"
637 android:description="@string/permdesc_changeNetworkState"
638 android:label="@string/permlab_changeNetworkState" />
639
640 <!-- Allows applications to change Wi-Fi connectivity state -->
641 <permission android:name="android.permission.CHANGE_WIFI_STATE"
642 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
643 android:protectionLevel="dangerous"
644 android:description="@string/permdesc_changeWifiState"
645 android:label="@string/permlab_changeWifiState" />
646
Robert Greenwaltfc1b15c2009-05-22 15:09:51 -0700647 <!-- Allows applications to enter Wi-Fi Multicast mode -->
648 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
649 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
650 android:protectionLevel="dangerous"
651 android:description="@string/permdesc_changeWifiMulticastState"
652 android:label="@string/permlab_changeWifiMulticastState" />
653
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 <!-- Allows applications to discover and pair bluetooth devices -->
655 <permission android:name="android.permission.BLUETOOTH_ADMIN"
656 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
657 android:protectionLevel="dangerous"
658 android:description="@string/permdesc_bluetoothAdmin"
659 android:label="@string/permlab_bluetoothAdmin" />
660
661 <!-- Allows an application to clear the caches of all installed
662 applications on the device. -->
663 <permission android:name="android.permission.CLEAR_APP_CACHE"
664 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
665 android:protectionLevel="dangerous"
666 android:label="@string/permlab_clearAppCache"
667 android:description="@string/permdesc_clearAppCache" />
668
669 <!-- Allows an application to read the low-level system log files.
670 These can contain slightly private information about what is
671 happening on the device, but should never contain the user's
672 private information. -->
673 <permission android:name="android.permission.READ_LOGS"
674 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
675 android:protectionLevel="dangerous"
676 android:label="@string/permlab_readLogs"
677 android:description="@string/permdesc_readLogs" />
678
679 <!-- ========================================= -->
680 <!-- Permissions for special development tools -->
681 <!-- ========================================= -->
682 <eat-comment />
683
684 <!-- Group of permissions that are related to development features. These
685 are not permissions that should appear in normal applications; they
686 protect APIs that are intended only to be used for development
687 purposes. -->
688 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
689 android:label="@string/permgrouplab_developmentTools"
690 android:description="@string/permgroupdesc_developmentTools" />
691
692 <!-- Configure an application for debugging. -->
693 <permission android:name="android.permission.SET_DEBUG_APP"
694 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
695 android:protectionLevel="dangerous"
696 android:label="@string/permlab_setDebugApp"
697 android:description="@string/permdesc_setDebugApp" />
698
699 <!-- Allows an application to set the maximum number of (not needed)
700 application processes that can be running. -->
701 <permission android:name="android.permission.SET_PROCESS_LIMIT"
702 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
703 android:protectionLevel="dangerous"
704 android:label="@string/permlab_setProcessLimit"
705 android:description="@string/permdesc_setProcessLimit" />
706
707 <!-- Allows an application to control whether activities are immediately
708 finished when put in the background. -->
709 <permission android:name="android.permission.SET_ALWAYS_FINISH"
710 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
711 android:protectionLevel="dangerous"
712 android:label="@string/permlab_setAlwaysFinish"
713 android:description="@string/permdesc_setAlwaysFinish" />
714
715 <!-- Allow an application to request that a signal be sent to all persistent processes -->
716 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
717 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
718 android:protectionLevel="dangerous"
719 android:label="@string/permlab_signalPersistentProcesses"
720 android:description="@string/permdesc_signalPersistentProcesses" />
721
722 <!-- ==================================== -->
723 <!-- Private (signature-only) permissions -->
724 <!-- ==================================== -->
725 <eat-comment />
726
727 <!-- Allows applications to RW to diagnostic resources. -->
728 <permission android:name="android.permission.DIAGNOSTIC"
729 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
730 android:protectionLevel="signature"
731 android:description="@string/permdesc_diagnostic"
732 android:label="@string/permlab_diagnostic" />
733
734 <!-- Allows an application to open, close, or disable the status bar
735 and its icons. -->
736 <permission android:name="android.permission.STATUS_BAR"
737 android:label="@string/permlab_statusBar"
738 android:description="@string/permdesc_statusBar"
739 android:protectionLevel="signatureOrSystem" />
740
741 <!-- Allows an application to force any currently running process to be
742 in the foreground. -->
743 <permission android:name="android.permission.SET_PROCESS_FOREGROUND"
744 android:label="@string/permlab_setProcessForeground"
745 android:description="@string/permdesc_setProcessForeground"
746 android:protectionLevel="signature" />
747
748 <!-- Allows an application to force a BACK operation on whatever is the
749 top activity. -->
750 <permission android:name="android.permission.FORCE_BACK"
751 android:label="@string/permlab_forceBack"
752 android:description="@string/permdesc_forceBack"
753 android:protectionLevel="signature" />
754
755 <!-- Allows an application to publish system-level services. Such services
756 can only be published from processes that never go away, so this is
757 not something that any normal application can do. -->
758 <permission android:name="android.permission.ADD_SYSTEM_SERVICE"
759 android:label="@string/permlab_addSystemService"
760 android:description="@string/permdesc_addSystemService"
761 android:protectionLevel="signature" />
762
763 <permission android:name="android.permission.FOTA_UPDATE"
764 android:label="@string/permlab_fotaUpdate"
765 android:description="@string/permdesc_fotaUpdate"
766 android:protectionLevel="signature" />
767
768 <!-- Allows an application to update device statistics. Not for
769 use by third party apps. -->
770 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
771 android:label="@string/permlab_batteryStats"
772 android:description="@string/permdesc_batteryStats"
773 android:protectionLevel="signature" />
774
775 <!-- Allows an application to open windows that are for use by parts
776 of the system user interface. Not for use by third party apps. -->
777 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
778 android:label="@string/permlab_internalSystemWindow"
779 android:description="@string/permdesc_internalSystemWindow"
780 android:protectionLevel="signature" />
781
782 <!-- Allows an application to manage (create, destroy,
783 Z-order) application tokens in the window manager. This is only
784 for use by the system. -->
785 <permission android:name="android.permission.MANAGE_APP_TOKENS"
786 android:label="@string/permlab_manageAppTokens"
787 android:description="@string/permdesc_manageAppTokens"
788 android:protectionLevel="signature" />
789
790 <!-- Allows an application to inject user events (keys, touch, trackball)
791 into the event stream and deliver them to ANY window. Without this
792 permission, you can only deliver events to windows in your own process.
793 Very few applications should need to use this permission. -->
794 <permission android:name="android.permission.INJECT_EVENTS"
795 android:label="@string/permlab_injectEvents"
796 android:description="@string/permdesc_injectEvents"
797 android:protectionLevel="signature" />
798
799 <!-- Allows an application to watch and control how activities are
800 started globally in the system. Only for is in debugging
801 (usually the monkey command). -->
802 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
803 android:label="@string/permlab_runSetActivityWatcher"
804 android:description="@string/permdesc_runSetActivityWatcher"
805 android:protectionLevel="signature" />
806
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700807 <!-- Allows an application to call the activity manager shutdown() API
808 to put the higher-level system there into a shutdown state. -->
Dianne Hackborn55280a92009-05-07 15:53:46 -0700809 <permission android:name="android.permission.SHUTDOWN"
810 android:label="@string/permlab_shutdown"
811 android:description="@string/permdesc_shutdown"
812 android:protectionLevel="signature" />
813
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700814 <!-- Allows an application to tell the activity manager to temporarily
815 stop application switches, putting it into a special mode that
816 prevents applications from immediately switching away from some
817 critical UI such as the home screen. -->
818 <permission android:name="android.permission.STOP_APP_SWITCHES"
819 android:label="@string/permlab_stopAppSwitches"
820 android:description="@string/permdesc_stopAppSwitches"
821 android:protectionLevel="signature" />
822
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 <!-- Allows an application to retrieve the current state of keys and
824 switches. This is only for use by the system.-->
825 <permission android:name="android.permission.READ_INPUT_STATE"
826 android:label="@string/permlab_readInputState"
827 android:description="@string/permdesc_readInputState"
828 android:protectionLevel="signature" />
829
830 <!-- Must be required by input method services, to ensure that only the
831 system can bind to them. -->
832 <permission android:name="android.permission.BIND_INPUT_METHOD"
833 android:label="@string/permlab_bindInputMethod"
834 android:description="@string/permdesc_bindInputMethod"
835 android:protectionLevel="signature" />
836
837 <!-- Allows low-level access to setting the orientation (actually
838 rotation) of the screen. Not for use by normal applications. -->
839 <permission android:name="android.permission.SET_ORIENTATION"
840 android:label="@string/permlab_setOrientation"
841 android:description="@string/permdesc_setOrientation"
842 android:protectionLevel="signature" />
843
844 <!-- Allows an application to install packages. -->
845 <permission android:name="android.permission.INSTALL_PACKAGES"
846 android:label="@string/permlab_installPackages"
847 android:description="@string/permdesc_installPackages"
Jasper Lin77323362009-03-24 18:24:57 -0700848 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800849
850 <!-- Allows an application to clear user data -->
851 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
852 android:label="@string/permlab_clearAppUserData"
853 android:description="@string/permdesc_clearAppUserData"
854 android:protectionLevel="signature" />
855
856 <!-- Allows an application to delete cache files. -->
857 <permission android:name="android.permission.DELETE_CACHE_FILES"
858 android:label="@string/permlab_deleteCacheFiles"
859 android:description="@string/permdesc_deleteCacheFiles"
860 android:protectionLevel="signature" />
861
862 <!-- Allows an application to delete packages. -->
863 <permission android:name="android.permission.DELETE_PACKAGES"
864 android:label="@string/permlab_deletePackages"
865 android:description="@string/permdesc_deletePackages"
Jasper Lin77323362009-03-24 18:24:57 -0700866 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867
868 <!-- Allows an application to change whether an application component (other than its own) is
869 enabled or not. -->
870 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
871 android:label="@string/permlab_changeComponentState"
872 android:description="@string/permdesc_changeComponentState"
873 android:protectionLevel="signature" />
874
875 <!-- Allows an application to use SurfaceFlinger's low level features -->
876 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
877 android:label="@string/permlab_accessSurfaceFlinger"
878 android:description="@string/permdesc_accessSurfaceFlinger"
879 android:protectionLevel="signature" />
880
881 <!-- Allows an application to take screen shots and more generally
882 get access to the frame buffer data -->
883 <permission android:name="android.permission.READ_FRAME_BUFFER"
884 android:label="@string/permlab_readFrameBuffer"
885 android:description="@string/permdesc_readFrameBuffer"
886 android:protectionLevel="signature" />
887
888 <!-- Required to be able to disable the device (very dangerous!). -->
889 <permission android:name="android.permission.BRICK"
890 android:label="@string/permlab_brick"
891 android:description="@string/permdesc_brick"
892 android:protectionLevel="signature" />
893
894 <!-- Required to be able to reboot the device. -->
895 <permission android:name="android.permission.REBOOT"
896 android:label="@string/permlab_reboot"
897 android:description="@string/permdesc_reboot"
898 android:protectionLevel="signature" />
899
900 <!-- Allows low-level access to power management -->
901 <permission android:name="android.permission.DEVICE_POWER"
902 android:label="@string/permlab_devicePower"
903 android:description="@string/permdesc_devicePower"
904 android:protectionLevel="signature" />
905
906 <!-- Run as a manufacturer test application, running as the root user.
907 Only available when the device is running in manufacturer test mode. -->
908 <permission android:name="android.permission.FACTORY_TEST"
909 android:label="@string/permlab_factoryTest"
910 android:description="@string/permdesc_factoryTest"
911 android:protectionLevel="signature" />
912
913 <!-- Allows an application to broadcast a notification that an application
914 package has been removed. -->
915 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
916 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
917 android:label="@string/permlab_broadcastPackageRemoved"
918 android:description="@string/permdesc_broadcastPackageRemoved"
919 android:protectionLevel="signature" />
920
921 <!-- Allows an application to broadcast an SMS receipt notification -->
922 <permission android:name="android.permission.BROADCAST_SMS"
923 android:permissionGroup="android.permission-group.MESSAGES"
924 android:label="@string/permlab_broadcastSmsReceived"
925 android:description="@string/permdesc_broadcastSmsReceived"
926 android:protectionLevel="signature" />
927
928 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
929 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
930 android:permissionGroup="android.permission-group.MESSAGES"
931 android:label="@string/permlab_broadcastWapPush"
932 android:description="@string/permdesc_broadcastWapPush"
933 android:protectionLevel="signature" />
934
935 <permission android:name="android.permission.MASTER_CLEAR"
936 android:label="@string/permlab_masterClear"
937 android:description="@string/permdesc_masterClear"
938 android:protectionLevel="signatureOrSystem" />
939
940 <!-- Allows an application to call any phone number, including emergency
941 numbers, without going through the Dialer user interface for the user
942 to confirm the call being placed. -->
943 <permission android:name="android.permission.CALL_PRIVILEGED"
944 android:label="@string/permlab_callPrivileged"
945 android:description="@string/permdesc_callPrivileged"
946 android:protectionLevel="signatureOrSystem" />
947
948 <!-- Allows enabling/disabling location update notifications from
949 the radio. Not for use by normal applications. -->
950 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
951 android:label="@string/permlab_locationUpdates"
952 android:description="@string/permdesc_locationUpdates"
Mike Lockwood275555c2009-05-01 11:30:34 -0400953 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800954
955 <!-- Allows read/write access to the "properties" table in the checkin
956 database, to change values that get uploaded. -->
957 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
958 android:label="@string/permlab_checkinProperties"
959 android:description="@string/permdesc_checkinProperties"
Jasper Lin77323362009-03-24 18:24:57 -0700960 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800961
962 <!-- Allows an application to collect component usage
Dianne Hackborn7d1e5772009-03-24 22:47:09 -0700963 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
965 android:label="@string/permlab_pkgUsageStats"
966 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborn7d1e5772009-03-24 22:47:09 -0700967 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968
969 <!-- Allows an application to collect battery statistics -->
970 <permission android:name="android.permission.BATTERY_STATS"
971 android:label="@string/permlab_batteryStats"
972 android:description="@string/permdesc_batteryStats"
973 android:protectionLevel="normal" />
974
Christopher Tate181fafa2009-05-14 11:12:14 -0700975 <!-- Allows an application to control the backup and restore process
976 @hide pending API council -->
977 <permission android:name="android.permission.BACKUP"
978 android:label="@string/permlab_backup"
979 android:description="@string/permdesc_backup"
980 android:protectionLevel="signature" />
981
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700982 <!-- Allows an application to tell the AppWidget service which application
983 can access AppWidget's data. The normal user flow is that a user
984 picks an AppWidget to go into a particular host, thereby giving that
985 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800986 An application that has this permission should honor that contract.
987 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700988 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800989 android:permissionGroup="android.permission-group.PERSONAL_INFO"
990 android:label="@string/permlab_bindGadget"
991 android:description="@string/permdesc_bindGadget"
Jeff Sharkeyaf999282009-05-18 14:35:49 -0700992 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800993
994 <!-- Allows applications to change the background data setting
995 @hide pending API council -->
996 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
997 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
998 android:protectionLevel="signature"
999 android:description="@string/permdesc_changeBackgroundDataSetting"
1000 android:label="@string/permlab_changeBackgroundDataSetting" />
1001
1002 <application android:process="system"
1003 android:persistent="true"
1004 android:hasCode="false"
1005 android:label="@string/android_system_label"
1006 android:allowClearUserData="false"
1007 android:icon="@drawable/ic_launcher_android">
1008 <activity android:name="com.android.internal.app.ChooserActivity"
1009 android:theme="@style/Theme.Dialog.Alert"
1010 android:excludeFromRecents="true"
1011 android:multiprocess="true">
1012 <intent-filter>
1013 <action android:name="android.intent.action.CHOOSER" />
1014 <category android:name="android.intent.category.DEFAULT" />
1015 </intent-filter>
1016 </activity>
1017 <activity android:name="com.android.internal.app.RingtonePickerActivity"
1018 android:theme="@style/Theme.Dialog.Alert"
1019 android:excludeFromRecents="true"
1020 android:multiprocess="true">
1021 <intent-filter>
1022 <action android:name="android.intent.action.RINGTONE_PICKER" />
1023 <category android:name="android.intent.category.DEFAULT" />
1024 </intent-filter>
1025 </activity>
1026 <activity android:name="com.android.internal.app.UsbStorageActivity"
1027 android:theme="@style/Theme.Dialog.Alert"
1028 android:excludeFromRecents="true">
1029 </activity>
1030 <activity android:name="com.android.internal.app.UsbStorageStopActivity"
1031 android:theme="@style/Theme.Dialog.Alert"
1032 android:excludeFromRecents="true">
1033 </activity>
1034 <activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
1035 android:theme="@style/Theme.Dialog.Alert"
1036 android:excludeFromRecents="true">
1037 </activity>
1038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001039 <service android:name="com.android.server.LoadAverageService"
1040 android:exported="true" />
1041
1042 <receiver android:name="com.android.server.BootReceiver" >
1043 <intent-filter>
1044 <action android:name="android.intent.action.BOOT_COMPLETED" />
1045 </intent-filter>
1046 </receiver>
1047
1048 <receiver android:name="com.android.server.MasterClearReceiver"
1049 android:permission="android.permission.MASTER_CLEAR" >
1050 <intent-filter>
1051 <action android:name="android.intent.action.GTALK_DATA_MESSAGE_RECEIVED" />
1052 <category android:name="android.intent.category.MASTER_CLEAR" />
1053 </intent-filter>
1054 </receiver>
1055 </application>
1056
1057</manifest>
1058
1059