| 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" |
| Daniel Sandler | 7d9ea8c | 2011-01-11 10:28:58 -0500 | [diff] [blame] | 16 | android:hardwareAccelerated="true" |
| Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 17 | android:label="@string/app_label" |
| 18 | android:icon="@drawable/ic_launcher_settings"> |
| Joe Onorato | 808182d | 2010-07-09 18:52:06 -0400 | [diff] [blame] | 19 | |
| Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame] | 20 | <!-- Broadcast receiver that gets the broadcast at boot time and starts |
| 21 | up everything else. |
| 22 | TODO: Should have an android:permission attribute |
| 23 | --> |
| 24 | <service android:name="SystemUIService" |
| 25 | android:exported="true" |
| Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 26 | /> |
| Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 27 | |
| Winson Chung | 9112ec3 | 2011-06-27 13:15:32 -0700 | [diff] [blame^] | 28 | <!-- started from PhoneWindowManager |
| 29 | TODO: Should have an android:permission attribute --> |
| 30 | <service android:name=".screenshot.TakeScreenshotService" |
| 31 | android:exported="false" /> |
| 32 | |
| Mike Lockwood | 5787a2d | 2011-06-17 12:21:39 -0400 | [diff] [blame] | 33 | <activity android:name=".usb.UsbPreferenceActivity" |
| 34 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 35 | android:excludeFromRecents="true"> |
| 36 | </activity> |
| Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 37 | <activity android:name=".usb.UsbStorageActivity" |
| 38 | android:excludeFromRecents="true"> |
| 39 | </activity> |
| Dianne Hackborn | d39d515 | 2010-10-11 17:14:31 -0700 | [diff] [blame] | 40 | <activity android:name="com.android.internal.app.ExternalMediaFormatActivity" |
| 41 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 42 | android:excludeFromRecents="true"> |
| 43 | </activity> |
| Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 44 | |
| Mike Lockwood | 3a68b83 | 2011-03-08 10:08:59 -0500 | [diff] [blame] | 45 | <!-- started from UsbDeviceSettingsManager --> |
| Mike Lockwood | bce6f8f | 2011-03-13 17:26:52 -0400 | [diff] [blame] | 46 | <activity android:name=".usb.UsbConfirmActivity" |
| 47 | android:exported="true" |
| 48 | android:permission="android.permission.MANAGE_USB" |
| 49 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 50 | android:finishOnCloseSystemDialogs="true" |
| 51 | android:excludeFromRecents="true"> |
| 52 | </activity> |
| 53 | |
| 54 | <!-- started from UsbDeviceSettingsManager --> |
| Mike Lockwood | 3a68b83 | 2011-03-08 10:08:59 -0500 | [diff] [blame] | 55 | <activity android:name=".usb.UsbPermissionActivity" |
| 56 | android:exported="true" |
| 57 | android:permission="android.permission.MANAGE_USB" |
| 58 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 59 | android:finishOnCloseSystemDialogs="true" |
| 60 | android:excludeFromRecents="true"> |
| 61 | </activity> |
| 62 | |
| 63 | <!-- started from UsbDeviceSettingsManager --> |
| 64 | <activity android:name=".usb.UsbResolverActivity" |
| 65 | android:exported="true" |
| 66 | android:permission="android.permission.MANAGE_USB" |
| 67 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 68 | android:finishOnCloseSystemDialogs="true" |
| 69 | android:excludeFromRecents="true"> |
| 70 | </activity> |
| Mike Lockwood | 024b4f1 | 2011-03-10 12:12:31 -0500 | [diff] [blame] | 71 | |
| 72 | <!-- started from UsbDeviceSettingsManager --> |
| 73 | <activity android:name=".usb.UsbAccessoryUriActivity" |
| 74 | android:exported="true" |
| 75 | android:permission="android.permission.MANAGE_USB" |
| 76 | android:theme="@*android:style/Theme.Holo.Dialog.Alert" |
| 77 | android:finishOnCloseSystemDialogs="true" |
| 78 | android:excludeFromRecents="true"> |
| 79 | </activity> |
| Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 80 | </application> |
| 81 | </manifest> |