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