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