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