2010-04-08 16:41:23 -05:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-05-26 17:03:26 -04:00
|
|
|
package="com.android.systemui"
|
2010-06-30 17:02:37 -04:00
|
|
|
android:sharedUserId="android.uid.system"
|
|
|
|
android:process="system"
|
|
|
|
>
|
2010-04-08 16:41:23 -05:00
|
|
|
|
2010-06-04 16:21:12 -04:00
|
|
|
<uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
|
2010-08-31 14:16:13 -04:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
2010-08-20 19:25:39 -07:00
|
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
2011-03-08 10:08:59 -05:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_USB" />
|
2010-06-04 16:21:12 -04:00
|
|
|
|
2010-04-08 16:41:23 -05:00
|
|
|
<application
|
2010-07-30 17:24:38 -07:00
|
|
|
android:persistent="true"
|
2010-04-08 16:41:23 -05:00
|
|
|
android:allowClearUserData="false"
|
2011-01-11 10:28:58 -05:00
|
|
|
android:hardwareAccelerated="true"
|
2010-04-08 16:41:23 -05:00
|
|
|
android:label="@string/app_label"
|
|
|
|
android:icon="@drawable/ic_launcher_settings">
|
2010-07-09 18:52:06 -04:00
|
|
|
|
2010-10-21 11:09:02 -04:00
|
|
|
<!-- Broadcast receiver that gets the broadcast at boot time and starts
|
|
|
|
up everything else.
|
|
|
|
TODO: Should have an android:permission attribute
|
|
|
|
-->
|
|
|
|
<service android:name="SystemUIService"
|
|
|
|
android:exported="true"
|
2010-04-08 16:41:23 -05:00
|
|
|
/>
|
2010-06-04 11:25:26 -07:00
|
|
|
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
2010-10-11 17:14:31 -07:00
|
|
|
<activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
|
|
|
|
android:theme="@*android:style/Theme.Dialog.Alert"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
2010-06-04 11:25:26 -07:00
|
|
|
|
2010-09-08 15:23:18 -04:00
|
|
|
<activity android:name=".recent.RecentApplicationsActivity"
|
2010-08-20 19:25:39 -07:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
|
|
android:excludeFromRecents="true"
|
2010-09-24 18:29:03 -07:00
|
|
|
android:launchMode="singleInstance"
|
2010-08-20 19:25:39 -07:00
|
|
|
android:exported="true">
|
|
|
|
</activity>
|
|
|
|
|
2011-03-13 17:26:52 -04:00
|
|
|
<!-- started from UsbDeviceSettingsManager -->
|
|
|
|
<activity android:name=".usb.UsbConfirmActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.MANAGE_USB"
|
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert"
|
|
|
|
android:finishOnCloseSystemDialogs="true"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
|
|
|
|
2011-03-08 10:08:59 -05:00
|
|
|
<!-- started from UsbDeviceSettingsManager -->
|
|
|
|
<activity android:name=".usb.UsbPermissionActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.MANAGE_USB"
|
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert"
|
|
|
|
android:finishOnCloseSystemDialogs="true"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<!-- started from UsbDeviceSettingsManager -->
|
|
|
|
<activity android:name=".usb.UsbResolverActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.MANAGE_USB"
|
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert"
|
|
|
|
android:finishOnCloseSystemDialogs="true"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
2011-03-10 12:12:31 -05:00
|
|
|
|
|
|
|
<!-- started from UsbDeviceSettingsManager -->
|
|
|
|
<activity android:name=".usb.UsbAccessoryUriActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.MANAGE_USB"
|
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert"
|
|
|
|
android:finishOnCloseSystemDialogs="true"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
2010-04-08 16:41:23 -05:00
|
|
|
</application>
|
|
|
|
</manifest>
|