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