Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Joe Onorato | 79de0c5 | 2010-05-26 17:03:26 -0400 | [diff] [blame] | 2 | package="com.android.systemui" |
Joe Onorato | a2dd4c1 | 2010-06-30 17:02:37 -0400 | [diff] [blame] | 3 | android:sharedUserId="android.uid.system" |
| 4 | android:process="system" |
| 5 | > |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 6 | |
Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 7 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" /> |
Daniel Sandler | d39e388 | 2010-08-31 14:16:13 -0400 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 9 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Jim Miller | e6ad1a8 | 2010-08-20 19:25:39 -0700 | [diff] [blame] | 10 | <uses-permission android:name="android.permission.GET_TASKS" /> |
Mike Lockwood | 3a68b83 | 2011-03-08 10:08:59 -0500 | [diff] [blame] | 11 | <uses-permission android:name="android.permission.MANAGE_USB" /> |
Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 12 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 13 | <application |
Dianne Hackborn | 26755a3 | 2010-07-30 17:24:38 -0700 | [diff] [blame] | 14 | android:persistent="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 15 | android:allowClearUserData="false" |
Christopher Tate | 2efd2db | 2011-07-19 16:32:49 -0700 | [diff] [blame] | 16 | android:allowBackup="false" |
Daniel Sandler | 7d9ea8c | 2011-01-11 10:28:58 -0500 | [diff] [blame] | 17 | android:hardwareAccelerated="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 18 | android:label="@string/app_label" |
| 19 | android:icon="@drawable/ic_launcher_settings"> |
Joe Onorato | 808182d | 2010-07-09 18:52:06 -0400 | [diff] [blame] | 20 | |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 21 | <!-- Broadcast receiver that gets the broadcast at boot time and starts |
| 22 | up everything else. |
| 23 | TODO: Should have an android:permission attribute |
| 24 | --> |
| 25 | <service android:name="SystemUIService" |
| 26 | android:exported="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 27 | /> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 28 | |
Winson Chung | 9112ec3 | 2011-06-27 13:15:32 -0700 | [diff] [blame] | 29 | <!-- started from PhoneWindowManager |
| 30 | TODO: Should have an android:permission attribute --> |
| 31 | <service android:name=".screenshot.TakeScreenshotService" |
| 32 | android:exported="false" /> |
| 33 | |
Dianne Hackborn | 45ce864 | 2011-07-14 16:10:16 -0700 | [diff] [blame] | 34 | <service android:name=".LoadAverageService" |
| 35 | android:exported="true" /> |
| 36 | |
| 37 | <receiver android:name=".BootReceiver" > |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 40 | </intent-filter> |
| 41 | </receiver> |
| 42 | |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 43 | <activity android:name=".usb.UsbStorageActivity" |
| 44 | android:excludeFromRecents="true"> |
| 45 | </activity> |
Dianne Hackborn | d39d515 | 2010-10-11 17:14:31 -0700 | [diff] [blame] | 46 | <activity android:name="com.android.internal.app.ExternalMediaFormatActivity" |
| 47 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 48 | android:excludeFromRecents="true"> |
| 49 | </activity> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 50 | |
Mike Lockwood | 3a68b83 | 2011-03-08 10:08:59 -0500 | [diff] [blame] | 51 | <!-- started from UsbDeviceSettingsManager --> |
Mike Lockwood | bce6f8f | 2011-03-13 17:26:52 -0400 | [diff] [blame] | 52 | <activity android:name=".usb.UsbConfirmActivity" |
| 53 | android:exported="true" |
| 54 | android:permission="android.permission.MANAGE_USB" |
| 55 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 56 | android:finishOnCloseSystemDialogs="true" |
| 57 | android:excludeFromRecents="true"> |
| 58 | </activity> |
| 59 | |
| 60 | <!-- started from UsbDeviceSettingsManager --> |
Mike Lockwood | 3a68b83 | 2011-03-08 10:08:59 -0500 | [diff] [blame] | 61 | <activity android:name=".usb.UsbPermissionActivity" |
| 62 | android:exported="true" |
| 63 | android:permission="android.permission.MANAGE_USB" |
| 64 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 65 | android:finishOnCloseSystemDialogs="true" |
| 66 | android:excludeFromRecents="true"> |
| 67 | </activity> |
| 68 | |
| 69 | <!-- started from UsbDeviceSettingsManager --> |
| 70 | <activity android:name=".usb.UsbResolverActivity" |
| 71 | android:exported="true" |
| 72 | android:permission="android.permission.MANAGE_USB" |
| 73 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 74 | android:finishOnCloseSystemDialogs="true" |
| 75 | android:excludeFromRecents="true"> |
| 76 | </activity> |
Mike Lockwood | 024b4f1 | 2011-03-10 12:12:31 -0500 | [diff] [blame] | 77 | |
| 78 | <!-- started from UsbDeviceSettingsManager --> |
| 79 | <activity android:name=".usb.UsbAccessoryUriActivity" |
| 80 | android:exported="true" |
| 81 | android:permission="android.permission.MANAGE_USB" |
| 82 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 83 | android:finishOnCloseSystemDialogs="true" |
| 84 | android:excludeFromRecents="true"> |
| 85 | </activity> |
Jeff Sharkey | 41ff7ec | 2011-07-25 15:21:22 -0700 | [diff] [blame] | 86 | |
| 87 | <!-- started from NetworkPolicyManagerService --> |
| 88 | <activity |
| 89 | android:name=".net.NetworkOverLimitActivity" |
| 90 | android:exported="true" |
| 91 | android:permission="android.permission.MANAGE_NETWORK_POLICY" |
| 92 | android:theme="@android:style/Theme.Holo.Panel" |
| 93 | android:finishOnCloseSystemDialogs="true" |
| 94 | android:launchMode="singleTop" |
| 95 | android:taskAffinity="com.android.systemui.net" |
| 96 | android:excludeFromRecents="true" /> |
| 97 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 98 | </application> |
| 99 | </manifest> |