Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 1 | <?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 Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.android.server.wm.flicker.testapp"> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 19 | |
Nataniel Borges | 3bc59bb | 2020-07-15 20:59:36 +0200 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="29" |
| 21 | android:targetSdkVersion="29"/> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 22 | <application android:allowBackup="false" |
| 23 | android:supportsRtl="true"> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 24 | <activity android:name=".SimpleActivity" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 25 | android:taskAffinity="com.android.server.wm.flicker.testapp.SimpleActivity" |
| 26 | android:label="SimpleApp" |
| 27 | android:exported="true"> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 28 | <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 Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 34 | android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivity" |
| 35 | android:label="ImeApp" |
| 36 | android:exported="true"> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 37 | <intent-filter> |
| 38 | <action android:name="android.intent.action.MAIN"/> |
| 39 | <category android:name="android.intent.category.LAUNCHER"/> |
| 40 | </intent-filter> |
| 41 | </activity> |
Nataniel Borges | 4bfe816 | 2019-09-23 15:52:58 +0200 | [diff] [blame] | 42 | <activity android:name=".ImeActivityAutoFocus" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 43 | android:taskAffinity="com.android.server.wm.flicker.testapp.ImeActivityAutoFocus" |
| 44 | android:windowSoftInputMode="stateVisible" |
| 45 | android:label="ImeAppAutoFocus" |
| 46 | android:exported="true"> |
Nataniel Borges | 4bfe816 | 2019-09-23 15:52:58 +0200 | [diff] [blame] | 47 | <intent-filter> |
| 48 | <action android:name="android.intent.action.MAIN"/> |
| 49 | <category android:name="android.intent.category.LAUNCHER"/> |
| 50 | </intent-filter> |
| 51 | </activity> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 52 | <activity android:name=".SeamlessRotationActivity" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 53 | android:taskAffinity="com.android.server.wm.flicker.testapp.SeamlessRotationActivity" |
| 54 | android:configChanges="orientation|screenSize" |
| 55 | android:label="SeamlessApp" |
| 56 | android:exported="true"> |
Vishnu Nair | 8248b7c | 2018-08-01 10:13:36 -0700 | [diff] [blame] | 57 | <intent-filter> |
| 58 | <action android:name="android.intent.action.MAIN"/> |
| 59 | <category android:name="android.intent.category.LAUNCHER"/> |
| 60 | </intent-filter> |
| 61 | </activity> |
| 62 | </application> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 63 | </manifest> |