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