b030e80284
Making sure CL[1] can resolve IME flickers when - App with IME transiting from a fixed orientation task - App with IME transiting to the overview screen [1]: I332c0e4fff62df5d7b793eda2767bb58fe85a938 Fix: 224407658 Test: atest FlickerTests:OpenImeWindowFromFixedOrientationAppTest Test: atest FlickerTests:OpenImeWindowToOverViewTest Change-Id: I3120d403b850418a87f57472b91674b0165982b0
124 lines
5.8 KiB
XML
124 lines
5.8 KiB
XML
<?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=".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>
|
|
</application>
|
|
</manifest>
|