1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2020 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<manifest xmlns:android="http://schemas.android.com/apk/res/android" 18 package="com.android.wm.shell.flicker.testapp"> 19 20 <uses-sdk android:minSdkVersion="29" 21 android:targetSdkVersion="29"/> 22 <application android:allowBackup="false" 23 android:supportsRtl="true"> 24 <activity android:name=".FixedActivity" 25 android:resizeableActivity="true" 26 android:supportsPictureInPicture="true" 27 android:launchMode="singleTop" 28 android:theme="@style/CutoutShortEdges" 29 android:label="FixedApp" 30 android:exported="true"> 31 <intent-filter> 32 <action android:name="android.intent.action.MAIN"/> 33 <category android:name="android.intent.category.LAUNCHER"/> 34 </intent-filter> 35 </activity> 36 <activity android:name=".PipActivity" 37 android:resizeableActivity="true" 38 android:supportsPictureInPicture="true" 39 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" 40 android:taskAffinity="com.android.wm.shell.flicker.testapp.PipActivity" 41 android:theme="@style/CutoutShortEdges" 42 android:launchMode="singleTop" 43 android:label="PipApp" 44 android:exported="true"> 45 <intent-filter> 46 <action android:name="android.intent.action.MAIN"/> 47 <category android:name="android.intent.category.LAUNCHER"/> 48 </intent-filter> 49 <intent-filter> 50 <action android:name="android.intent.action.MAIN"/> 51 <category android:name="android.intent.category.LEANBACK_LAUNCHER"/> 52 </intent-filter> 53 </activity> 54 55 <activity android:name=".ImeActivity" 56 android:taskAffinity="com.android.wm.shell.flicker.testapp.ImeActivity" 57 android:theme="@style/CutoutShortEdges" 58 android:label="ImeApp" 59 android:launchMode="singleTop" 60 android:exported="true"> 61 <intent-filter> 62 <action android:name="android.intent.action.MAIN"/> 63 <category android:name="android.intent.category.LAUNCHER"/> 64 </intent-filter> 65 <intent-filter> 66 <action android:name="android.intent.action.MAIN"/> 67 <category android:name="android.intent.category.LEANBACK_LAUNCHER"/> 68 </intent-filter> 69 </activity> 70 71 <activity android:name=".SplitScreenActivity" 72 android:resizeableActivity="true" 73 android:taskAffinity="com.android.wm.shell.flicker.testapp.SplitScreenActivity" 74 android:theme="@style/CutoutShortEdges" 75 android:label="SplitScreenPrimaryApp" 76 android:exported="true"> 77 <intent-filter> 78 <action android:name="android.intent.action.MAIN"/> 79 <category android:name="android.intent.category.LAUNCHER"/> 80 </intent-filter> 81 </activity> 82 83 <activity android:name=".SplitScreenSecondaryActivity" 84 android:resizeableActivity="true" 85 android:taskAffinity="com.android.wm.shell.flicker.testapp.SplitScreenSecondaryActivity" 86 android:theme="@style/CutoutShortEdges" 87 android:label="SplitScreenSecondaryApp" 88 android:exported="true"> 89 <intent-filter> 90 <action android:name="android.intent.action.MAIN"/> 91 <category android:name="android.intent.category.LAUNCHER"/> 92 </intent-filter> 93 </activity> 94 95 <activity android:name=".SendNotificationActivity" 96 android:taskAffinity="com.android.wm.shell.flicker.testapp.SendNotificationActivity" 97 android:theme="@style/CutoutShortEdges" 98 android:label="SendNotificationApp" 99 android:exported="true"> 100 <intent-filter> 101 <action android:name="android.intent.action.MAIN"/> 102 <category android:name="android.intent.category.LAUNCHER"/> 103 </intent-filter> 104 </activity> 105 106 <activity android:name=".NonResizeableActivity" 107 android:resizeableActivity="false" 108 android:taskAffinity="com.android.wm.shell.flicker.testapp.NonResizeableActivity" 109 android:theme="@style/CutoutShortEdges" 110 android:label="NonResizeableApp" 111 android:exported="true"> 112 <intent-filter> 113 <action android:name="android.intent.action.MAIN"/> 114 <category android:name="android.intent.category.LAUNCHER"/> 115 </intent-filter> 116 </activity> 117 118 <activity android:name=".SimpleActivity" 119 android:taskAffinity="com.android.wm.shell.flicker.testapp.SimpleActivity" 120 android:theme="@style/CutoutShortEdges" 121 android:label="SimpleApp" 122 android:exported="true"> 123 <intent-filter> 124 <action android:name="android.intent.action.MAIN"/> 125 <category android:name="android.intent.category.LAUNCHER"/> 126 </intent-filter> 127 </activity> 128 <activity 129 android:name=".LaunchBubbleActivity" 130 android:label="LaunchBubbleApp" 131 android:exported="true" 132 android:theme="@style/CutoutShortEdges" 133 android:launchMode="singleTop"> 134 <intent-filter> 135 <action android:name="android.intent.action.MAIN" /> 136 <action android:name="android.intent.action.VIEW" /> 137 <category android:name="android.intent.category.LAUNCHER"/> 138 </intent-filter> 139 </activity> 140 <activity 141 android:name=".BubbleActivity" 142 android:label="BubbleApp" 143 android:exported="false" 144 android:theme="@style/CutoutShortEdges" 145 android:resizeableActivity="true" /> 146 </application> 147</manifest> 148