blob: 7770c73d7a73eed9601e8f9541f6e05ac94a14d9 [file] [log] [blame]
Vishnu Nair8248b7c2018-08-01 10:13:36 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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
Ashwini Orugantie178c242020-03-18 15:46:39 -070017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.server.wm.flicker.testapp">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070019
Ashwini Orugantie178c242020-03-18 15:46:39 -070020 <uses-sdk android:minSdkVersion="17"
21 android:targetSdkVersion="27"/>
22 <application android:allowBackup="false"
23 android:supportsRtl="true">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070024 <activity android:name=".SimpleActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070025 android:taskAffinity="com.android.server.wm.flicker.testapp.SimpleActivity"
26 android:label="SimpleApp"
27 android:exported="true">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070028 <intent-filter>
29 <action android:name="android.intent.action.MAIN"/>
30 <category android:name="android.intent.category.LAUNCHER"/>
31 </intent-filter>
32 </activity>
33 <activity android:name=".ImeActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070034 android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivity"
35 android:label="ImeApp"
36 android:exported="true">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070037 <intent-filter>
38 <action android:name="android.intent.action.MAIN"/>
39 <category android:name="android.intent.category.LAUNCHER"/>
40 </intent-filter>
41 </activity>
Nataniel Borges4bfe8162019-09-23 15:52:58 +020042 <activity android:name=".ImeActivityAutoFocus"
Ashwini Orugantie178c242020-03-18 15:46:39 -070043 android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivityAutoFocus"
44 android:windowSoftInputMode="stateVisible"
45 android:label="ImeAppAutoFocus"
46 android:exported="true">
Nataniel Borges4bfe8162019-09-23 15:52:58 +020047 <intent-filter>
48 <action android:name="android.intent.action.MAIN"/>
49 <category android:name="android.intent.category.LAUNCHER"/>
50 </intent-filter>
51 </activity>
Vishnu Nair8248b7c2018-08-01 10:13:36 -070052 <activity android:name=".PipActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070053 android:resizeableActivity="true"
54 android:supportsPictureInPicture="true"
55 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
56 android:taskAffinity="com.android.server.wm.flicker.testapp.PipActivity"
57 android:label="PipApp"
58 android:exported="true">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070059 <intent-filter>
60 <action android:name="android.intent.action.MAIN"/>
61 <category android:name="android.intent.category.LAUNCHER"/>
62 </intent-filter>
63 </activity>
64 <activity android:name=".SeamlessRotationActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070065 android:taskAffinity="com.android.server.wm.flicker.testapp.SeamlessRotationActivity"
66 android:configChanges="orientation|screenSize"
67 android:label="SeamlessApp"
68 android:exported="true">
Vishnu Nair8248b7c2018-08-01 10:13:36 -070069 <intent-filter>
70 <action android:name="android.intent.action.MAIN"/>
71 <category android:name="android.intent.category.LAUNCHER"/>
72 </intent-filter>
73 </activity>
74 </application>
Ashwini Orugantie178c242020-03-18 15:46:39 -070075</manifest>