| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2018 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.server.wm.flicker.testapp"> |
| |
| <uses-sdk android:minSdkVersion="29" |
| android:targetSdkVersion="29"/> |
| <application android:allowBackup="false" |
| android:supportsRtl="true"> |
| <activity android:name=".SimpleActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.SimpleActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:label="SimpleApp" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ImeActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:label="ImeApp" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ImeActivityAutoFocus" |
| android:theme="@style/CutoutShortEdges" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivityAutoFocus" |
| android:windowSoftInputMode="stateVisible" |
| android:label="ImeAppAutoFocus" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ImeStateInitializeActivity" |
| android:theme="@style/no_starting_window" |
| android:windowSoftInputMode="stateAlwaysHidden" |
| android:label="ImeStateInitializeActivity" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".SeamlessRotationActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.SeamlessRotationActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:configChanges="orientation|screenSize" |
| android:label="SeamlessApp" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".NonResizeableActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:resizeableActivity="false" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.NonResizeableActivity" |
| android:label="NonResizeableApp" |
| android:exported="true" |
| android:showOnLockScreen="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ButtonActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.ButtonActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:configChanges="orientation|screenSize" |
| android:label="ButtonActivity" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".LaunchNewTaskActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.LaunchNewTaskActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:configChanges="orientation|screenSize" |
| android:label="LaunchNewTaskActivity" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".DialogThemedActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.DialogThemedActivity" |
| android:configChanges="orientation|screenSize" |
| android:theme="@style/DialogTheme" |
| android:label="DialogThemedActivity" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".PortraitOnlyActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.PortraitOnlyActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:screenOrientation="portrait" |
| android:configChanges="orientation|screenSize" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ImeEditorPopupDialogActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.ImeEditorPopupDialogActivity" |
| android:configChanges="orientation|screenSize" |
| android:theme="@style/CutoutShortEdges" |
| android:label="ImeEditorPopupDialogActivity" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".ShowWhenLockedActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.ShowWhenLockedActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:configChanges="orientation|screenSize" |
| android:label="ShowWhenLockedActivity" |
| android:showWhenLocked="true" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| <activity android:name=".NotificationActivity" |
| android:taskAffinity="com.android.server.wm.flicker.testapp.NotificationActivity" |
| android:theme="@style/CutoutShortEdges" |
| android:configChanges="orientation|screenSize" |
| android:exported="true"> |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN"/> |
| <category android:name="android.intent.category.LAUNCHER"/> |
| </intent-filter> |
| </activity> |
| </application> |
| </manifest> |