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" /> |
Mike Lockwood | 2cc0377 | 2011-03-11 20:00:53 -0500 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.MANAGE_USB" /> |
Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 9 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 10 | <application |
Dianne Hackborn | 26755a3 | 2010-07-30 17:24:38 -0700 | [diff] [blame] | 11 | android:persistent="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 12 | android:allowClearUserData="false" |
| 13 | android:label="@string/app_label" |
| 14 | android:icon="@drawable/ic_launcher_settings"> |
| 15 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 16 | <service |
Joe Onorato | 1c95ecb | 2010-06-28 17:19:12 -0400 | [diff] [blame] | 17 | android:name=".statusbar.StatusBarService" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 18 | android:exported="false" |
| 19 | /> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 20 | |
| 21 | <activity android:name=".usb.UsbStorageActivity" |
| 22 | android:excludeFromRecents="true"> |
| 23 | </activity> |
Dianne Hackborn | d39d515 | 2010-10-11 17:14:31 -0700 | [diff] [blame] | 24 | <activity android:name="com.android.internal.app.ExternalMediaFormatActivity" |
| 25 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 26 | android:excludeFromRecents="true"> |
| 27 | </activity> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 28 | |
Mike Lockwood | 2cc0377 | 2011-03-11 20:00:53 -0500 | [diff] [blame] | 29 | <!-- started from UsbDeviceSettingsManager --> |
Mike Lockwood | 638d7cb | 2011-03-14 21:56:33 -0400 | [diff] [blame^] | 30 | <activity android:name=".usb.UsbConfirmActivity" |
| 31 | android:exported="true" |
| 32 | android:permission="android.permission.MANAGE_USB" |
| 33 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 34 | android:finishOnCloseSystemDialogs="true" |
| 35 | android:excludeFromRecents="true"> |
| 36 | </activity> |
| 37 | |
| 38 | <!-- started from UsbDeviceSettingsManager --> |
Mike Lockwood | 2cc0377 | 2011-03-11 20:00:53 -0500 | [diff] [blame] | 39 | <activity android:name=".usb.UsbPermissionActivity" |
| 40 | android:exported="true" |
| 41 | android:permission="android.permission.MANAGE_USB" |
| 42 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 43 | android:finishOnCloseSystemDialogs="true" |
| 44 | android:excludeFromRecents="true"> |
| 45 | </activity> |
| 46 | |
| 47 | <!-- started from UsbDeviceSettingsManager --> |
| 48 | <activity android:name=".usb.UsbResolverActivity" |
| 49 | android:exported="true" |
| 50 | android:permission="android.permission.MANAGE_USB" |
| 51 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 52 | android:finishOnCloseSystemDialogs="true" |
| 53 | android:excludeFromRecents="true"> |
| 54 | </activity> |
| 55 | |
| 56 | <!-- started from UsbDeviceSettingsManager --> |
| 57 | <activity android:name=".usb.UsbAccessoryUriActivity" |
| 58 | android:exported="true" |
| 59 | android:permission="android.permission.MANAGE_USB" |
| 60 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 61 | android:finishOnCloseSystemDialogs="true" |
| 62 | android:excludeFromRecents="true"> |
| 63 | </activity> |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 64 | </application> |
| 65 | </manifest> |