SystemUI now registers for DESK_DOCK launches, so users with other dock apps installed can still opt to use those in this new regime. (Part of migrating users away from DeskClock as the dock app.) Bug: 3155234 Change-Id: I0da0f04f8a0a89e7d237c092f16f4f27eb88c92c
132 lines
5.5 KiB
XML
132 lines
5.5 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.systemui"
|
|
coreApp="true"
|
|
android:sharedUserId="android.uid.system"
|
|
android:process="system"
|
|
>
|
|
|
|
<uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
<uses-permission android:name="android.permission.MANAGE_USB" />
|
|
|
|
<application
|
|
android:persistent="true"
|
|
android:allowClearUserData="false"
|
|
android:allowBackup="false"
|
|
android:hardwareAccelerated="true"
|
|
android:label="@string/app_label"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<!-- 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"
|
|
/>
|
|
|
|
<!-- started from PhoneWindowManager
|
|
TODO: Should have an android:permission attribute -->
|
|
<service android:name=".screenshot.TakeScreenshotService"
|
|
android:process=":screenshot"
|
|
android:exported="false" />
|
|
|
|
<service android:name=".LoadAverageService"
|
|
android:exported="true" />
|
|
|
|
<service android:name=".ImageWallpaper"
|
|
android:permission="android.permission.BIND_WALLPAPER"
|
|
android:exported="true" />
|
|
|
|
<receiver android:name=".BootReceiver" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- handle dock insertion, launch screensaver instead -->
|
|
<activity android:name=".DreamsDockLauncher"
|
|
android:label="@string/dreams_dock_launcher">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.DESK_DOCK" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
<activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
|
|
android:theme="@*android:style/Theme.Dialog.Alert"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- started from NetworkPolicyManagerService -->
|
|
<activity
|
|
android:name=".net.NetworkOverLimitActivity"
|
|
android:exported="true"
|
|
android:permission="android.permission.MANAGE_NETWORK_POLICY"
|
|
android:theme="@android:style/Theme.Holo.Panel"
|
|
android:finishOnCloseSystemDialogs="true"
|
|
android:launchMode="singleTop"
|
|
android:taskAffinity="com.android.systemui.net"
|
|
android:excludeFromRecents="true" />
|
|
|
|
<!-- started from ... somewhere -->
|
|
<activity
|
|
android:name=".Nyandroid"
|
|
android:exported="true"
|
|
android:label="Nyandroid"
|
|
android:icon="@drawable/nyandroid04"
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
|
|
android:hardwareAccelerated="true"
|
|
android:launchMode="singleInstance"
|
|
android:excludeFromRecents="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.DREAM" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|