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