blob: 47807c42b14a69edf4a61079385de19e743b2d93 [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
Debajit Ghosh96cb8d02009-09-29 17:57:25 -0700345 <!-- Permissions for direct access to the accounts managed
346 by the Account Manager. -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 <permission-group android:name="android.permission-group.ACCOUNTS"
348 android:label="@string/permgrouplab_accounts"
349 android:description="@string/permgroupdesc_accounts" />
350
351 <!-- Allows access to the list of accounts in the Accounts Service -->
352 <permission android:name="android.permission.GET_ACCOUNTS"
353 android:permissionGroup="android.permission-group.ACCOUNTS"
354 android:protectionLevel="normal"
355 android:description="@string/permdesc_getAccounts"
356 android:label="@string/permlab_getAccounts" />
357
Fred Quintanad4a1d2e2009-07-16 16:36:38 -0700358 <!-- Allows an application to act as an AccountAuthenticator for
359 the AccountManager -->
360 <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
361 android:permissionGroup="android.permission-group.ACCOUNTS"
362 android:protectionLevel="dangerous"
363 android:label="@string/permlab_authenticateAccounts"
364 android:description="@string/permdesc_authenticateAccounts" />
365
366 <!-- Allows an application to request authtokens from the AccountManager -->
367 <permission android:name="android.permission.USE_CREDENTIALS"
368 android:permissionGroup="android.permission-group.ACCOUNTS"
369 android:protectionLevel="dangerous"
370 android:label="@string/permlab_useCredentials"
371 android:description="@string/permdesc_useCredentials" />
372
373 <!-- Allows an application to manage the list of accounts in the AccountManager -->
374 <permission android:name="android.permission.MANAGE_ACCOUNTS"
375 android:permissionGroup="android.permission-group.ACCOUNTS"
376 android:protectionLevel="dangerous"
377 android:label="@string/permlab_manageAccounts"
378 android:description="@string/permdesc_manageAccounts" />
379
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 <!-- ================================== -->
381 <!-- Permissions for accessing hardware -->
382 <!-- ================================== -->
383 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700384
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 <!-- Used for permissions that provide direct access to the hardware on
386 the device. This includes audio, the camera, vibrator, etc. -->
387 <permission-group android:name="android.permission-group.HARDWARE_CONTROLS"
388 android:label="@string/permgrouplab_hardwareControls"
389 android:description="@string/permgroupdesc_hardwareControls" />
390
391 <!-- Allows an application to modify global audio settings -->
392 <permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"
393 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
394 android:protectionLevel="dangerous"
395 android:label="@string/permlab_modifyAudioSettings"
396 android:description="@string/permdesc_modifyAudioSettings" />
397
398 <!-- Allows an application to record audio -->
399 <permission android:name="android.permission.RECORD_AUDIO"
400 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
401 android:protectionLevel="dangerous"
402 android:label="@string/permlab_recordAudio"
403 android:description="@string/permdesc_recordAudio" />
404
405 <!-- Required to be able to access the camera device. -->
406 <permission android:name="android.permission.CAMERA"
407 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
408 android:protectionLevel="dangerous"
409 android:label="@string/permlab_camera"
410 android:description="@string/permdesc_camera" />
411
412 <!-- Allows access to the vibrator -->
413 <permission android:name="android.permission.VIBRATE"
414 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
415 android:protectionLevel="normal"
416 android:label="@string/permlab_vibrate"
417 android:description="@string/permdesc_vibrate" />
418
419 <!-- Allows access to the flashlight -->
420 <permission android:name="android.permission.FLASHLIGHT"
421 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
422 android:protectionLevel="normal"
423 android:label="@string/permlab_flashlight"
424 android:description="@string/permdesc_flashlight" />
425
426 <!-- Allows access to hardware peripherals. Intended only for hardware testing -->
427 <permission android:name="android.permission.HARDWARE_TEST"
428 android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
429 android:protectionLevel="signature"
430 android:label="@string/permlab_hardware_test"
431 android:description="@string/permdesc_hardware_test" />
432
433 <!-- =========================================== -->
434 <!-- Permissions associated with telephony state -->
435 <!-- =========================================== -->
436 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 <!-- Used for permissions that are associated with accessing and modifyign
439 telephony state: intercepting outgoing calls, reading
440 and modifying the phone state. Note that
441 placing phone calls is not in this group, since that is in the
442 more important "takin' yer moneys" group. -->
443 <permission-group android:name="android.permission-group.PHONE_CALLS"
444 android:label="@string/permgrouplab_phoneCalls"
445 android:description="@string/permgroupdesc_phoneCalls" />
446
447 <!-- Allows an application to monitor, modify, or abort outgoing
448 calls. -->
449 <permission android:name="android.permission.PROCESS_OUTGOING_CALLS"
450 android:permissionGroup="android.permission-group.PHONE_CALLS"
451 android:protectionLevel="dangerous"
452 android:label="@string/permlab_processOutgoingCalls"
453 android:description="@string/permdesc_processOutgoingCalls" />
454
455 <!-- Allows modification of the telephony state - power on, mmi, etc.
456 Does not include placing calls. -->
457 <permission android:name="android.permission.MODIFY_PHONE_STATE"
458 android:permissionGroup="android.permission-group.PHONE_CALLS"
459 android:protectionLevel="dangerous"
460 android:label="@string/permlab_modifyPhoneState"
461 android:description="@string/permdesc_modifyPhoneState" />
462
463 <!-- Allows read only access to phone state. -->
464 <permission android:name="android.permission.READ_PHONE_STATE"
465 android:permissionGroup="android.permission-group.PHONE_CALLS"
466 android:protectionLevel="dangerous"
467 android:label="@string/permlab_readPhoneState"
468 android:description="@string/permdesc_readPhoneState" />
469
San Mehat29b57e62009-04-23 09:18:32 -0700470 <!-- ================================== -->
471 <!-- Permissions for sdcard interaction -->
472 <!-- ================================== -->
473 <eat-comment />
474
475 <!-- Group of permissions that are related to SD card access. -->
476 <permission-group android:name="android.permission-group.STORAGE"
477 android:label="@string/permgrouplab_storage"
478 android:description="@string/permgroupdesc_storage" />
479
San Mehat5a3a77d2009-06-01 09:25:28 -0700480 <!-- Allows an application to write to external storage -->
481 <permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
San Mehat29b57e62009-04-23 09:18:32 -0700482 android:permissionGroup="android.permission-group.STORAGE"
483 android:label="@string/permlab_sdcardWrite"
484 android:description="@string/permdesc_sdcardWrite"
Dianne Hackborn62da8462009-05-13 15:06:13 -0700485 android:protectionLevel="dangerous" />
San Mehat29b57e62009-04-23 09:18:32 -0700486
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800487 <!-- ============================================ -->
488 <!-- Permissions for low-level system interaction -->
489 <!-- ============================================ -->
490 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700491
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 <!-- Group of permissions that are related to system APIs. Many
493 of these are not permissions the user will be expected to understand,
494 and such permissions should generally be marked as "normal" protection
495 level so they don't get displayed. This can also, however, be used
496 for miscellaneous features that provide access to the operating system,
497 such as writing the global system settings. -->
498 <permission-group android:name="android.permission-group.SYSTEM_TOOLS"
499 android:label="@string/permgrouplab_systemTools"
500 android:description="@string/permgroupdesc_systemTools" />
501
502 <!-- Allows an application to read or write the system settings. -->
503 <permission android:name="android.permission.WRITE_SETTINGS"
504 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
505 android:protectionLevel="dangerous"
506 android:label="@string/permlab_writeSettings"
507 android:description="@string/permdesc_writeSettings" />
508
509 <!-- Allows an application to read or write the secure system settings. -->
510 <permission android:name="android.permission.WRITE_SECURE_SETTINGS"
511 android:protectionLevel="signatureOrSystem"
512 android:label="@string/permlab_writeSecureSettings"
513 android:description="@string/permdesc_writeSecureSettings" />
514
515 <!-- Allows an application to modify the Google service map. -->
516 <permission android:name="android.permission.WRITE_GSERVICES"
517 android:protectionLevel="signature"
518 android:label="@string/permlab_writeGservices"
519 android:description="@string/permdesc_writeGservices" />
520
521 <!-- Allows an application to expand or collapse the status bar. -->
522 <permission android:name="android.permission.EXPAND_STATUS_BAR"
523 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
524 android:protectionLevel="normal"
525 android:label="@string/permlab_expandStatusBar"
526 android:description="@string/permdesc_expandStatusBar" />
527
528 <!-- Allows an application to get information about the currently
529 or recently running tasks: a thumbnail representation of the tasks,
530 what activities are running in it, etc. -->
531 <permission android:name="android.permission.GET_TASKS"
532 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
533 android:protectionLevel="dangerous"
534 android:label="@string/permlab_getTasks"
535 android:description="@string/permdesc_getTasks" />
536
537 <!-- Allows an application to change the Z-order of tasks -->
538 <permission android:name="android.permission.REORDER_TASKS"
539 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
540 android:protectionLevel="dangerous"
541 android:label="@string/permlab_reorderTasks"
542 android:description="@string/permdesc_reorderTasks" />
543
544 <!-- Allows an application to modify the current configuration, such
545 as locale. -->
546 <permission android:name="android.permission.CHANGE_CONFIGURATION"
547 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
548 android:protectionLevel="dangerous"
549 android:label="@string/permlab_changeConfiguration"
550 android:description="@string/permdesc_changeConfiguration" />
551
552 <!-- Allows an application to restart other applications. -->
553 <permission android:name="android.permission.RESTART_PACKAGES"
554 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
555 android:protectionLevel="dangerous"
556 android:label="@string/permlab_restartPackages"
557 android:description="@string/permdesc_restartPackages" />
558
559 <!-- Allows an application to retrieve state dump information from system
560 services. -->
561 <permission android:name="android.permission.DUMP"
562 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
563 android:protectionLevel="dangerous"
564 android:label="@string/permlab_dump"
565 android:description="@string/permdesc_dump" />
566
567 <!-- Allows an application to open windows using the type
568 {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
569 shown on top of all other applications. Very few applications
570 should use this permission; these windows are intended for
571 system-level interaction with the user. -->
572 <permission android:name="android.permission.SYSTEM_ALERT_WINDOW"
573 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
574 android:protectionLevel="dangerous"
575 android:label="@string/permlab_systemAlertWindow"
576 android:description="@string/permdesc_systemAlertWindow" />
577
578 <!-- Modify the global animation scaling factor. -->
579 <permission android:name="android.permission.SET_ANIMATION_SCALE"
580 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
581 android:protectionLevel="dangerous"
582 android:label="@string/permlab_setAnimationScale"
583 android:description="@string/permdesc_setAnimationScale" />
584
585 <!-- Allow an application to make its activities persistent. -->
586 <permission android:name="android.permission.PERSISTENT_ACTIVITY"
587 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
588 android:protectionLevel="dangerous"
589 android:label="@string/permlab_persistentActivity"
590 android:description="@string/permdesc_persistentActivity" />
591
592 <!-- Allows an application to find out the space used by any package. -->
593 <permission android:name="android.permission.GET_PACKAGE_SIZE"
594 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
595 android:protectionLevel="normal"
596 android:label="@string/permlab_getPackageSize"
597 android:description="@string/permdesc_getPackageSize" />
598
599 <!-- Allows an application to modify the list of preferred applications
600 with the {@link android.content.pm.PackageManager#addPackageToPreferred
601 PackageManager.addPackageToPreferred()} and
602 {@link android.content.pm.PackageManager#removePackageFromPreferred
603 PackageManager.removePackageFromPreferred()} methods. -->
604 <permission android:name="android.permission.SET_PREFERRED_APPLICATIONS"
605 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
606 android:protectionLevel="dangerous"
607 android:label="@string/permlab_setPreferredApplications"
608 android:description="@string/permdesc_setPreferredApplications" />
609
610 <!-- Allows an application to receive the
611 {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is
612 broadcast after the system finishes booting. If you don't
613 request this permission, you will not receive the broadcast at
614 that time. Though holding this permission does not have any
615 security implications, it can have a negative impact on the
616 user experience by increasing the amount of time it takes the
617 system to start and allowing applications to have themselves
618 running without the user being aware of them. As such, you must
619 explicitly declare your use of this facility to make that visible
620 to the user. -->
621 <permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"
622 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
623 android:protectionLevel="normal"
624 android:label="@string/permlab_receiveBootCompleted"
625 android:description="@string/permdesc_receiveBootCompleted" />
626
627 <!-- Allows an application to broadcast sticky intents. These are
628 broadcasts whose data is held by the system after being finished,
629 so that clients can quickly retrieve that data without having
630 to wait for the next broadcast. -->
631 <permission android:name="android.permission.BROADCAST_STICKY"
632 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
633 android:protectionLevel="normal"
634 android:label="@string/permlab_broadcastSticky"
635 android:description="@string/permdesc_broadcastSticky" />
636
637 <!-- Allows using PowerManager WakeLocks to keep processor from sleeping or screen
638 from dimming -->
639 <permission android:name="android.permission.WAKE_LOCK"
640 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
641 android:protectionLevel="dangerous"
642 android:label="@string/permlab_wakeLock"
643 android:description="@string/permdesc_wakeLock" />
644
645 <!-- Allows applications to set the wallpaper -->
646 <permission android:name="android.permission.SET_WALLPAPER"
647 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
648 android:protectionLevel="normal"
649 android:label="@string/permlab_setWallpaper"
650 android:description="@string/permdesc_setWallpaper" />
651
652 <!-- Allows applications to set the wallpaper hints -->
653 <permission android:name="android.permission.SET_WALLPAPER_HINTS"
654 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
655 android:protectionLevel="normal"
656 android:label="@string/permlab_setWallpaperHints"
657 android:description="@string/permdesc_setWallpaperHints" />
658
659 <!-- Allows applications to set the system time zone -->
660 <permission android:name="android.permission.SET_TIME_ZONE"
661 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
662 android:protectionLevel="dangerous"
663 android:label="@string/permlab_setTimeZone"
664 android:description="@string/permdesc_setTimeZone" />
665
666 <!-- Allows mounting and unmounting file systems for removable storage. -->
667 <permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
668 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
669 android:protectionLevel="dangerous"
670 android:label="@string/permlab_mount_unmount_filesystems"
671 android:description="@string/permdesc_mount_unmount_filesystems" />
672
673 <!-- Allows formatting file systems for removable storage. -->
674 <permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"
675 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
676 android:protectionLevel="dangerous"
677 android:label="@string/permlab_mount_format_filesystems"
678 android:description="@string/permdesc_mount_format_filesystems" />
679
680 <!-- Allows applications to disable the keyguard -->
681 <permission android:name="android.permission.DISABLE_KEYGUARD"
682 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
683 android:protectionLevel="normal"
684 android:description="@string/permdesc_disableKeyguard"
685 android:label="@string/permlab_disableKeyguard" />
686
687 <!-- Allows applications to read the sync settings -->
688 <permission android:name="android.permission.READ_SYNC_SETTINGS"
689 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
690 android:protectionLevel="normal"
691 android:description="@string/permdesc_readSyncSettings"
692 android:label="@string/permlab_readSyncSettings" />
693
694 <!-- Allows applications to write the sync settings -->
695 <permission android:name="android.permission.WRITE_SYNC_SETTINGS"
696 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
697 android:protectionLevel="dangerous"
698 android:description="@string/permdesc_writeSyncSettings"
699 android:label="@string/permlab_writeSyncSettings" />
700
701 <!-- Allows applications to read the sync stats -->
702 <permission android:name="android.permission.READ_SYNC_STATS"
703 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
704 android:protectionLevel="normal"
705 android:description="@string/permdesc_readSyncStats"
706 android:label="@string/permlab_readSyncStats" />
707
708 <!-- Allows applications to write the apn settings -->
709 <permission android:name="android.permission.WRITE_APN_SETTINGS"
710 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
711 android:protectionLevel="dangerous"
712 android:description="@string/permdesc_writeApnSettings"
713 android:label="@string/permlab_writeApnSettings" />
714
Fred Quintana60307342009-03-24 22:48:12 -0700715 <!-- Allows an application to allow access the subscribed feeds
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 ContentProvider. -->
717 <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
718 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
719 android:label="@string/permlab_subscribedFeedsRead"
720 android:description="@string/permdesc_subscribedFeedsRead"
721 android:protectionLevel="normal" />
722 <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
723 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
724 android:label="@string/permlab_subscribedFeedsWrite"
725 android:description="@string/permdesc_subscribedFeedsWrite"
726 android:protectionLevel="dangerous" />
Fred Quintana60307342009-03-24 22:48:12 -0700727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728 <!-- Allows applications to change network connectivity state -->
729 <permission android:name="android.permission.CHANGE_NETWORK_STATE"
730 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
731 android:protectionLevel="dangerous"
732 android:description="@string/permdesc_changeNetworkState"
733 android:label="@string/permlab_changeNetworkState" />
734
735 <!-- Allows applications to change Wi-Fi connectivity state -->
736 <permission android:name="android.permission.CHANGE_WIFI_STATE"
737 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
738 android:protectionLevel="dangerous"
739 android:description="@string/permdesc_changeWifiState"
740 android:label="@string/permlab_changeWifiState" />
741
Robert Greenwaltfc1b15c2009-05-22 15:09:51 -0700742 <!-- Allows applications to enter Wi-Fi Multicast mode -->
743 <permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"
744 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
745 android:protectionLevel="dangerous"
746 android:description="@string/permdesc_changeWifiMulticastState"
747 android:label="@string/permlab_changeWifiMulticastState" />
748
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 <!-- Allows applications to discover and pair bluetooth devices -->
750 <permission android:name="android.permission.BLUETOOTH_ADMIN"
751 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
752 android:protectionLevel="dangerous"
753 android:description="@string/permdesc_bluetoothAdmin"
754 android:label="@string/permlab_bluetoothAdmin" />
755
756 <!-- Allows an application to clear the caches of all installed
757 applications on the device. -->
758 <permission android:name="android.permission.CLEAR_APP_CACHE"
759 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
760 android:protectionLevel="dangerous"
761 android:label="@string/permlab_clearAppCache"
762 android:description="@string/permdesc_clearAppCache" />
763
764 <!-- Allows an application to read the low-level system log files.
765 These can contain slightly private information about what is
766 happening on the device, but should never contain the user's
767 private information. -->
768 <permission android:name="android.permission.READ_LOGS"
769 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
770 android:protectionLevel="dangerous"
771 android:label="@string/permlab_readLogs"
772 android:description="@string/permdesc_readLogs" />
773
774 <!-- ========================================= -->
775 <!-- Permissions for special development tools -->
776 <!-- ========================================= -->
777 <eat-comment />
Fred Quintana60307342009-03-24 22:48:12 -0700778
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 <!-- Group of permissions that are related to development features. These
780 are not permissions that should appear in normal applications; they
781 protect APIs that are intended only to be used for development
782 purposes. -->
783 <permission-group android:name="android.permission-group.DEVELOPMENT_TOOLS"
784 android:label="@string/permgrouplab_developmentTools"
785 android:description="@string/permgroupdesc_developmentTools" />
786
787 <!-- Configure an application for debugging. -->
788 <permission android:name="android.permission.SET_DEBUG_APP"
789 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
790 android:protectionLevel="dangerous"
791 android:label="@string/permlab_setDebugApp"
792 android:description="@string/permdesc_setDebugApp" />
793
794 <!-- Allows an application to set the maximum number of (not needed)
795 application processes that can be running. -->
796 <permission android:name="android.permission.SET_PROCESS_LIMIT"
797 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
798 android:protectionLevel="dangerous"
799 android:label="@string/permlab_setProcessLimit"
800 android:description="@string/permdesc_setProcessLimit" />
801
802 <!-- Allows an application to control whether activities are immediately
803 finished when put in the background. -->
804 <permission android:name="android.permission.SET_ALWAYS_FINISH"
805 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
806 android:protectionLevel="dangerous"
807 android:label="@string/permlab_setAlwaysFinish"
808 android:description="@string/permdesc_setAlwaysFinish" />
809
810 <!-- Allow an application to request that a signal be sent to all persistent processes -->
811 <permission android:name="android.permission.SIGNAL_PERSISTENT_PROCESSES"
812 android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
813 android:protectionLevel="dangerous"
814 android:label="@string/permlab_signalPersistentProcesses"
815 android:description="@string/permdesc_signalPersistentProcesses" />
816
817 <!-- ==================================== -->
818 <!-- Private (signature-only) permissions -->
819 <!-- ==================================== -->
820 <eat-comment />
821
822 <!-- Allows applications to RW to diagnostic resources. -->
823 <permission android:name="android.permission.DIAGNOSTIC"
824 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
825 android:protectionLevel="signature"
826 android:description="@string/permdesc_diagnostic"
827 android:label="@string/permlab_diagnostic" />
828
829 <!-- Allows an application to open, close, or disable the status bar
830 and its icons. -->
831 <permission android:name="android.permission.STATUS_BAR"
832 android:label="@string/permlab_statusBar"
833 android:description="@string/permdesc_statusBar"
834 android:protectionLevel="signatureOrSystem" />
835
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 <!-- Allows an application to force a BACK operation on whatever is the
837 top activity. -->
838 <permission android:name="android.permission.FORCE_BACK"
839 android:label="@string/permlab_forceBack"
840 android:description="@string/permdesc_forceBack"
841 android:protectionLevel="signature" />
842
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800843 <!-- Allows an application to update device statistics. Not for
844 use by third party apps. -->
845 <permission android:name="android.permission.UPDATE_DEVICE_STATS"
846 android:label="@string/permlab_batteryStats"
847 android:description="@string/permdesc_batteryStats"
848 android:protectionLevel="signature" />
849
850 <!-- Allows an application to open windows that are for use by parts
851 of the system user interface. Not for use by third party apps. -->
852 <permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW"
853 android:label="@string/permlab_internalSystemWindow"
854 android:description="@string/permdesc_internalSystemWindow"
855 android:protectionLevel="signature" />
856
857 <!-- Allows an application to manage (create, destroy,
858 Z-order) application tokens in the window manager. This is only
859 for use by the system. -->
860 <permission android:name="android.permission.MANAGE_APP_TOKENS"
861 android:label="@string/permlab_manageAppTokens"
862 android:description="@string/permdesc_manageAppTokens"
863 android:protectionLevel="signature" />
864
865 <!-- Allows an application to inject user events (keys, touch, trackball)
866 into the event stream and deliver them to ANY window. Without this
867 permission, you can only deliver events to windows in your own process.
868 Very few applications should need to use this permission. -->
869 <permission android:name="android.permission.INJECT_EVENTS"
870 android:label="@string/permlab_injectEvents"
871 android:description="@string/permdesc_injectEvents"
872 android:protectionLevel="signature" />
873
874 <!-- Allows an application to watch and control how activities are
875 started globally in the system. Only for is in debugging
876 (usually the monkey command). -->
877 <permission android:name="android.permission.SET_ACTIVITY_WATCHER"
878 android:label="@string/permlab_runSetActivityWatcher"
879 android:description="@string/permdesc_runSetActivityWatcher"
880 android:protectionLevel="signature" />
881
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700882 <!-- Allows an application to call the activity manager shutdown() API
Dianne Hackborn7f205432009-07-28 00:13:47 -0700883 to put the higher-level system there into a shutdown state.
884 @hide -->
Dianne Hackborn55280a92009-05-07 15:53:46 -0700885 <permission android:name="android.permission.SHUTDOWN"
886 android:label="@string/permlab_shutdown"
887 android:description="@string/permdesc_shutdown"
888 android:protectionLevel="signature" />
889
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700890 <!-- Allows an application to tell the activity manager to temporarily
891 stop application switches, putting it into a special mode that
892 prevents applications from immediately switching away from some
Dianne Hackborn7f205432009-07-28 00:13:47 -0700893 critical UI such as the home screen.
894 @hide -->
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700895 <permission android:name="android.permission.STOP_APP_SWITCHES"
896 android:label="@string/permlab_stopAppSwitches"
897 android:description="@string/permdesc_stopAppSwitches"
898 android:protectionLevel="signature" />
899
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 <!-- Allows an application to retrieve the current state of keys and
901 switches. This is only for use by the system.-->
902 <permission android:name="android.permission.READ_INPUT_STATE"
903 android:label="@string/permlab_readInputState"
904 android:description="@string/permdesc_readInputState"
905 android:protectionLevel="signature" />
906
907 <!-- Must be required by input method services, to ensure that only the
908 system can bind to them. -->
909 <permission android:name="android.permission.BIND_INPUT_METHOD"
910 android:label="@string/permlab_bindInputMethod"
911 android:description="@string/permdesc_bindInputMethod"
912 android:protectionLevel="signature" />
913
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700914 <!-- Must be required by wallpaper services, to ensure that only the
915 system can bind to them. -->
916 <permission android:name="android.permission.BIND_WALLPAPER"
917 android:label="@string/permlab_bindWallpaper"
918 android:description="@string/permdesc_bindWallpaper"
Dianne Hackborn284ac932009-08-28 10:34:25 -0700919 android:protectionLevel="signatureOrSystem" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700920
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800921 <!-- Allows low-level access to setting the orientation (actually
922 rotation) of the screen. Not for use by normal applications. -->
923 <permission android:name="android.permission.SET_ORIENTATION"
924 android:label="@string/permlab_setOrientation"
925 android:description="@string/permdesc_setOrientation"
926 android:protectionLevel="signature" />
927
928 <!-- Allows an application to install packages. -->
929 <permission android:name="android.permission.INSTALL_PACKAGES"
930 android:label="@string/permlab_installPackages"
931 android:description="@string/permdesc_installPackages"
Jasper Lin24692412009-03-24 18:24:57 -0700932 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800933
934 <!-- Allows an application to clear user data -->
935 <permission android:name="android.permission.CLEAR_APP_USER_DATA"
936 android:label="@string/permlab_clearAppUserData"
937 android:description="@string/permdesc_clearAppUserData"
938 android:protectionLevel="signature" />
939
940 <!-- Allows an application to delete cache files. -->
941 <permission android:name="android.permission.DELETE_CACHE_FILES"
942 android:label="@string/permlab_deleteCacheFiles"
943 android:description="@string/permdesc_deleteCacheFiles"
944 android:protectionLevel="signature" />
945
946 <!-- Allows an application to delete packages. -->
947 <permission android:name="android.permission.DELETE_PACKAGES"
948 android:label="@string/permlab_deletePackages"
949 android:description="@string/permdesc_deletePackages"
Jasper Lin24692412009-03-24 18:24:57 -0700950 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800951
952 <!-- Allows an application to change whether an application component (other than its own) is
953 enabled or not. -->
954 <permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"
955 android:label="@string/permlab_changeComponentState"
956 android:description="@string/permdesc_changeComponentState"
957 android:protectionLevel="signature" />
958
959 <!-- Allows an application to use SurfaceFlinger's low level features -->
960 <permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
961 android:label="@string/permlab_accessSurfaceFlinger"
962 android:description="@string/permdesc_accessSurfaceFlinger"
963 android:protectionLevel="signature" />
964
965 <!-- Allows an application to take screen shots and more generally
966 get access to the frame buffer data -->
967 <permission android:name="android.permission.READ_FRAME_BUFFER"
968 android:label="@string/permlab_readFrameBuffer"
969 android:description="@string/permdesc_readFrameBuffer"
970 android:protectionLevel="signature" />
971
972 <!-- Required to be able to disable the device (very dangerous!). -->
973 <permission android:name="android.permission.BRICK"
974 android:label="@string/permlab_brick"
975 android:description="@string/permdesc_brick"
976 android:protectionLevel="signature" />
977
978 <!-- Required to be able to reboot the device. -->
979 <permission android:name="android.permission.REBOOT"
980 android:label="@string/permlab_reboot"
981 android:description="@string/permdesc_reboot"
982 android:protectionLevel="signature" />
983
984 <!-- Allows low-level access to power management -->
985 <permission android:name="android.permission.DEVICE_POWER"
986 android:label="@string/permlab_devicePower"
987 android:description="@string/permdesc_devicePower"
988 android:protectionLevel="signature" />
989
990 <!-- Run as a manufacturer test application, running as the root user.
991 Only available when the device is running in manufacturer test mode. -->
992 <permission android:name="android.permission.FACTORY_TEST"
993 android:label="@string/permlab_factoryTest"
994 android:description="@string/permdesc_factoryTest"
995 android:protectionLevel="signature" />
996
997 <!-- Allows an application to broadcast a notification that an application
998 package has been removed. -->
999 <permission android:name="android.permission.BROADCAST_PACKAGE_REMOVED"
1000 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1001 android:label="@string/permlab_broadcastPackageRemoved"
1002 android:description="@string/permdesc_broadcastPackageRemoved"
1003 android:protectionLevel="signature" />
1004
1005 <!-- Allows an application to broadcast an SMS receipt notification -->
1006 <permission android:name="android.permission.BROADCAST_SMS"
1007 android:permissionGroup="android.permission-group.MESSAGES"
1008 android:label="@string/permlab_broadcastSmsReceived"
1009 android:description="@string/permdesc_broadcastSmsReceived"
1010 android:protectionLevel="signature" />
1011
1012 <!-- Allows an application to broadcast a WAP PUSH receipt notification -->
1013 <permission android:name="android.permission.BROADCAST_WAP_PUSH"
1014 android:permissionGroup="android.permission-group.MESSAGES"
1015 android:label="@string/permlab_broadcastWapPush"
1016 android:description="@string/permdesc_broadcastWapPush"
1017 android:protectionLevel="signature" />
1018
1019 <permission android:name="android.permission.MASTER_CLEAR"
1020 android:label="@string/permlab_masterClear"
1021 android:description="@string/permdesc_masterClear"
1022 android:protectionLevel="signatureOrSystem" />
1023
1024 <!-- Allows an application to call any phone number, including emergency
1025 numbers, without going through the Dialer user interface for the user
1026 to confirm the call being placed. -->
1027 <permission android:name="android.permission.CALL_PRIVILEGED"
1028 android:label="@string/permlab_callPrivileged"
1029 android:description="@string/permdesc_callPrivileged"
1030 android:protectionLevel="signatureOrSystem" />
1031
Jim Miller767be5f2009-08-25 19:33:57 -07001032 <!-- Allows an application to perform CDMA OTA provisioning @hide -->
1033 <permission android:name="android.permission.PERFORM_CDMA_PROVISIONING"
1034 android:label="@string/permlab_performCdmaProvisioning"
1035 android:description="@string/permdesc_performCdmaProvisioning"
1036 android:protectionLevel="signatureOrSystem" />
1037
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 <!-- Allows enabling/disabling location update notifications from
1039 the radio. Not for use by normal applications. -->
1040 <permission android:name="android.permission.CONTROL_LOCATION_UPDATES"
1041 android:label="@string/permlab_locationUpdates"
1042 android:description="@string/permdesc_locationUpdates"
Mike Lockwood275555c2009-05-01 11:30:34 -04001043 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001044
1045 <!-- Allows read/write access to the "properties" table in the checkin
1046 database, to change values that get uploaded. -->
1047 <permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"
1048 android:label="@string/permlab_checkinProperties"
1049 android:description="@string/permdesc_checkinProperties"
Jasper Lin24692412009-03-24 18:24:57 -07001050 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051
1052 <!-- Allows an application to collect component usage
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001053 statistics @hide -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001054 <permission android:name="android.permission.PACKAGE_USAGE_STATS"
1055 android:label="@string/permlab_pkgUsageStats"
1056 android:description="@string/permdesc_pkgUsageStats"
Dianne Hackborn15ba2782009-03-25 15:09:04 -07001057 android:protectionLevel="signature" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001058
1059 <!-- Allows an application to collect battery statistics -->
1060 <permission android:name="android.permission.BATTERY_STATS"
1061 android:label="@string/permlab_batteryStats"
1062 android:description="@string/permdesc_batteryStats"
1063 android:protectionLevel="normal" />
1064
Christopher Tate181fafa2009-05-14 11:12:14 -07001065 <!-- Allows an application to control the backup and restore process
1066 @hide pending API council -->
1067 <permission android:name="android.permission.BACKUP"
1068 android:label="@string/permlab_backup"
1069 android:description="@string/permdesc_backup"
Joe Onorato8aeaf2e2009-06-29 14:46:30 -04001070 android:protectionLevel="signatureOrSystem" />
Christopher Tate181fafa2009-05-14 11:12:14 -07001071
Christopher Tate0749dcd2009-08-13 15:13:03 -07001072 <!-- Allows an application to participate in the backup and restore process
1073 @hide -->
1074 <permission android:name="android.permission.BACKUP_DATA"
1075 android:label="@string/permlab_backup_data"
1076 android:description="@string/permdesc_backup_data"
1077 android:protectionLevel="signatureOrSystem" />
1078
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001079 <!-- Allows an application to tell the AppWidget service which application
1080 can access AppWidget's data. The normal user flow is that a user
1081 picks an AppWidget to go into a particular host, thereby giving that
1082 host application access to the private data from the AppWidget app.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083 An application that has this permission should honor that contract.
1084 Very few applications should need to use this permission. -->
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001085 <permission android:name="android.permission.BIND_APPWIDGET"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001086 android:permissionGroup="android.permission-group.PERSONAL_INFO"
1087 android:label="@string/permlab_bindGadget"
1088 android:description="@string/permdesc_bindGadget"
Jeff Sharkeyaf999282009-05-18 14:35:49 -07001089 android:protectionLevel="signatureOrSystem" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001090
1091 <!-- Allows applications to change the background data setting
1092 @hide pending API council -->
1093 <permission android:name="android.permission.CHANGE_BACKGROUND_DATA_SETTING"
1094 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1095 android:protectionLevel="signature"
1096 android:description="@string/permdesc_changeBackgroundDataSetting"
1097 android:label="@string/permlab_changeBackgroundDataSetting" />
1098
Dianne Hackborn2af632f2009-07-08 14:56:37 -07001099 <!-- This permission can be used on content providers to allow the global
1100 search system to access their data. Typically it used when the
1101 provider has some permissions protecting it (which global search
1102 would not be expected to hold), and added as a read-only permission
1103 to the path in the provider where global search queries are
1104 performed. This permission can not be held by regular applications;
1105 it is used by applications to protect themselves from everyone else
1106 besides global search. -->
1107 <permission android:name="android.permission.GLOBAL_SEARCH"
1108 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1109 android:protectionLevel="signatureOrSystem" />
1110
1111 <!-- Internal permission protecting access to the global search
1112 system: ensures that only the system can access the provider
1113 to perform queries (since this otherwise provides unrestricted
1114 access to a variety of content providers), and to write the
1115 search statistics (to keep applications from gaming the source
1116 ranking).
1117 @hide -->
1118 <permission android:name="android.permission.GLOBAL_SEARCH_CONTROL"
1119 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
1120 android:protectionLevel="signature" />
1121
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001122 <!-- Allows applications to set a live wallpaper.
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001123 @hide XXX Change to signature once the picker is moved to its
1124 own apk as Ghod Intended. -->
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001125 <permission android:name="android.permission.SET_WALLPAPER_COMPONENT"
1126 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Dianne Hackbornaef405d2009-09-27 17:05:46 -07001127 android:protectionLevel="signatureOrSystem" />
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001128
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129 <application android:process="system"
1130 android:persistent="true"
1131 android:hasCode="false"
1132 android:label="@string/android_system_label"
1133 android:allowClearUserData="false"
Joe Onorato9bb8fd72009-07-28 18:24:51 -07001134 android:backupAgent="com.android.server.SystemBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -07001135 android:killAfterRestore="false"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001136 android:icon="@drawable/ic_launcher_android">
1137 <activity android:name="com.android.internal.app.ChooserActivity"
1138 android:theme="@style/Theme.Dialog.Alert"
Dianne Hackbornffa42482009-09-23 22:20:11 -07001139 android:finishOnCloseSystemDialogs="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001140 android:excludeFromRecents="true"
1141 android:multiprocess="true">
1142 <intent-filter>
1143 <action android:name="android.intent.action.CHOOSER" />
1144 <category android:name="android.intent.category.DEFAULT" />
1145 </intent-filter>
1146 </activity>
1147 <activity android:name="com.android.internal.app.RingtonePickerActivity"
1148 android:theme="@style/Theme.Dialog.Alert"
1149 android:excludeFromRecents="true"
1150 android:multiprocess="true">
1151 <intent-filter>
1152 <action android:name="android.intent.action.RINGTONE_PICKER" />
1153 <category android:name="android.intent.category.DEFAULT" />
1154 </intent-filter>
1155 </activity>
1156 <activity android:name="com.android.internal.app.UsbStorageActivity"
1157 android:theme="@style/Theme.Dialog.Alert"
1158 android:excludeFromRecents="true">
1159 </activity>
1160 <activity android:name="com.android.internal.app.UsbStorageStopActivity"
1161 android:theme="@style/Theme.Dialog.Alert"
1162 android:excludeFromRecents="true">
1163 </activity>
1164 <activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
1165 android:theme="@style/Theme.Dialog.Alert"
1166 android:excludeFromRecents="true">
1167 </activity>
1168
Fred Quintana33269202009-04-20 16:05:10 -07001169 <activity android:name="android.accounts.ChooseAccountActivity"
1170 android:excludeFromRecents="true"
1171 android:exported="true">
1172 </activity>
1173
Fred Quintanad4a1d2e2009-07-16 16:36:38 -07001174 <activity android:name="android.accounts.GrantCredentialsPermissionActivity"
1175 android:excludeFromRecents="true"
1176 android:exported="true">
1177 </activity>
1178
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001179 <activity android:name="com.android.server.ShutdownActivity"
1180 android:permission="android.permission.SHUTDOWN"
Mike Lockwood49f74682009-07-30 15:27:00 -07001181 android:excludeFromRecents="true">
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001182 <intent-filter>
1183 <action android:name="android.intent.action.ACTION_REQUEST_SHUTDOWN" />
1184 <category android:name="android.intent.category.DEFAULT" />
1185 </intent-filter>
1186 </activity>
Danke Xie22d1f9f2009-08-18 18:28:45 -04001187 <activity android:name="com.android.internal.app.NetInitiatedActivity"
1188 android:theme="@style/Theme.Dialog.Alert"
1189 android:excludeFromRecents="true">
1190 </activity>
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001192 <service android:name="com.android.server.LoadAverageService"
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001193 android:exported="true" />
1194
1195 <service android:name="com.android.internal.service.wallpaper.ImageWallpaper"
1196 android:permission="android.permission.BIND_WALLPAPER">
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001197 </service>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001198
1199 <receiver android:name="com.android.server.BootReceiver" >
1200 <intent-filter>
1201 <action android:name="android.intent.action.BOOT_COMPLETED" />
1202 </intent-filter>
1203 </receiver>
1204
1205 <receiver android:name="com.android.server.MasterClearReceiver"
1206 android:permission="android.permission.MASTER_CLEAR" >
1207 <intent-filter>
Wei Huang97ecc9c2009-05-11 17:44:20 -07001208 <action android:name="android.intent.action.REMOTE_INTENT" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001209 <category android:name="android.intent.category.MASTER_CLEAR" />
1210 </intent-filter>
1211 </receiver>
1212 </application>
1213
1214</manifest>
1215
1216