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