Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2019 The Android Open Source Project |
| 3 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | you may not use this file except in compliance with the License. |
| 5 | You may obtain a copy of the License at |
| 6 | http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | Unless required by applicable law or agreed to in writing, software |
| 8 | distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | See the License for the specific language governing permissions and |
| 11 | limitations under the License. |
| 12 | --> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 13 | |
Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 14 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 15 | package="com.android.test.taskembed"> |
| 16 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/> |
Louis Chang | 5510ecd | 2020-10-14 13:06:13 +0800 | [diff] [blame] | 17 | <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 18 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 19 | <!-- Enable / Disable tracing !--> |
| 20 | <uses-permission android:name="android.permission.DUMP" /> |
Diwas Sharma | 706df9c | 2023-09-01 00:45:16 +0000 | [diff] [blame^] | 21 | <application> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 22 | <activity android:name="TaskOrganizerMultiWindowTest" |
| 23 | android:label="TaskOrganizer MW Test" |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 24 | android:exported="true" |
| 25 | android:excludeFromRecents="true"> |
Robert Carr | 00c0dbe | 2020-01-24 15:30:24 -0800 | [diff] [blame] | 26 | <intent-filter> |
| 27 | <action android:name="android.intent.action.MAIN"/> |
| 28 | <category android:name="android.intent.category.LAUNCHER"/> |
| 29 | </intent-filter> |
| 30 | </activity> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 31 | <activity android:name="TaskOrganizerMultiWindowTest$TestActivity1" |
| 32 | android:label="Test Activity 1" |
| 33 | android:exported="false" |
| 34 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" |
| 35 | android:taskAffinity="com.android.test.taskembed.task1" |
| 36 | android:excludeFromRecents="true"> |
| 37 | <intent-filter> |
| 38 | <action android:name="android.intent.action.MAIN"/> |
| 39 | </intent-filter> |
| 40 | </activity> |
| 41 | <activity android:name="TaskOrganizerMultiWindowTest$TestActivity2" |
| 42 | android:label="Test Activity 2" |
| 43 | android:exported="false" |
| 44 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" |
| 45 | android:taskAffinity="com.android.test.taskembed.task2" |
| 46 | android:excludeFromRecents="true"> |
| 47 | <intent-filter> |
| 48 | <action android:name="android.intent.action.MAIN"/> |
| 49 | </intent-filter> |
| 50 | </activity> |
Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 51 | </application> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 52 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 53 | android:targetPackage="com.android.test.taskembed" |
| 54 | android:label="TaskOrganizerTest"> |
| 55 | </instrumentation> |
Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 56 | </manifest> |