Home | History | Annotate | Download | only in recents
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /*
      4  * Copyright (c) 2018 Google Inc.
      5  *
      6  * Licensed under the Apache License, Version 2.0 (the "License");
      7  * you may not use this file except in compliance with the License.
      8  * You may obtain a copy of the License at
      9  *
     10  *     http://www.apache.org/licenses/LICENSE-2.0
     11  *
     12  * Unless required by applicable law or agreed to in writing, software
     13  * distributed under the License is distributed on an "AS IS" BASIS,
     14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15  * See the License for the specific language governing permissions and
     16  * limitations under the License.
     17  */
     18 -->
     19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     20           xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
     21           xmlns:tools="http://schemas.android.com/tools"
     22           package="com.android.systemui"
     23           android:sharedUserId="android.uid.systemui"
     24           coreApp="true">
     25 
     26     <application
     27         android:name="com.android.systemui.SystemUIApplication">
     28 
     29         <!-- Service used by secondary users to register themselves with the system user. -->
     30         <service android:name=".recents.RecentsSystemUserService"
     31             android:exported="false"
     32             android:permission="com.android.systemui.permission.SELF" />
     33 
     34         <!-- Alternate Recents -->
     35         <activity android:name=".recents.RecentsActivity"
     36                   android:label="@string/accessibility_desc_recent_apps"
     37                   android:exported="false"
     38                   android:launchMode="singleInstance"
     39                   android:excludeFromRecents="true"
     40                   android:stateNotNeeded="true"
     41                   android:resumeWhilePausing="true"
     42                   android:resizeableActivity="true"
     43                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden"
     44                   android:theme="@style/RecentsTheme.Wallpaper">
     45             <intent-filter>
     46                 <action android:name="com.android.systemui.recents.TOGGLE_RECENTS" />
     47             </intent-filter>
     48         </activity>
     49 
     50     </application>
     51 </manifest>
     52