This adds 3D recents to the platform. Enabling it is a matter of setting 'config_enableRecentApps3D' on devices capable of supporting it (those with OGLES2.0 at the moment). Change-Id: Ife7bfe8ca02e7657821b68f915e31b0dab50cd2c
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.systemui"
|
|
android:sharedUserId="android.uid.system"
|
|
android:process="system"
|
|
>
|
|
|
|
<uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
|
<application
|
|
android:persistent="true"
|
|
android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<service
|
|
android:name=".statusbar.PhoneStatusBarService"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<service
|
|
android:name=".statusbar.tablet.TabletStatusBarService"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
|
|
<activity android:name=".statusbar.RecentApplicationsActivity"
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
android:excludeFromRecents="true"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|