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"/> |
Kean Mariotti | f9969f7 | 2023-06-09 12:53:23 +0000 | [diff] [blame] | 19 | <!-- Allow the test to connect to perfetto trace processor --> |
| 20 | <uses-permission android:name="android.permission.INTERNET"/> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 21 | <!-- Enable / Disable tracing !--> |
| 22 | <uses-permission android:name="android.permission.DUMP" /> |
Kean Mariotti | f9969f7 | 2023-06-09 12:53:23 +0000 | [diff] [blame] | 23 | <application android:networkSecurityConfig="@xml/network_security_config"> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 24 | <activity android:name="TaskOrganizerMultiWindowTest" |
| 25 | android:label="TaskOrganizer MW Test" |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 26 | android:exported="true" |
| 27 | android:excludeFromRecents="true"> |
Robert Carr | 00c0dbe | 2020-01-24 15:30:24 -0800 | [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> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 33 | <activity android:name="TaskOrganizerMultiWindowTest$TestActivity1" |
| 34 | android:label="Test Activity 1" |
| 35 | android:exported="false" |
| 36 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" |
| 37 | android:taskAffinity="com.android.test.taskembed.task1" |
| 38 | android:excludeFromRecents="true"> |
| 39 | <intent-filter> |
| 40 | <action android:name="android.intent.action.MAIN"/> |
| 41 | </intent-filter> |
| 42 | </activity> |
| 43 | <activity android:name="TaskOrganizerMultiWindowTest$TestActivity2" |
| 44 | android:label="Test Activity 2" |
| 45 | android:exported="false" |
| 46 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" |
| 47 | android:taskAffinity="com.android.test.taskembed.task2" |
| 48 | android:excludeFromRecents="true"> |
| 49 | <intent-filter> |
| 50 | <action android:name="android.intent.action.MAIN"/> |
| 51 | </intent-filter> |
| 52 | </activity> |
Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 53 | </application> |
arthurhung | dc1d359 | 2020-09-30 17:39:21 +0800 | [diff] [blame] | 54 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 55 | android:targetPackage="com.android.test.taskembed" |
| 56 | android:label="TaskOrganizerTest"> |
| 57 | </instrumentation> |
Robert Carr | 8a2f913 | 2019-11-11 15:03:15 -0800 | [diff] [blame] | 58 | </manifest> |