blob: cbeb246eb86c7d8df90b1260908808f86e1d4a2f [file] [log] [blame]
Robert Carr8a2f9132019-11-11 15:03:15 -08001<?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 Orugantie178c242020-03-18 15:46:39 -070013
Robert Carr8a2f9132019-11-11 15:03:15 -080014<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Orugantie178c242020-03-18 15:46:39 -070015 package="com.android.test.taskembed">
16 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
Louis Chang5510ecd2020-10-14 13:06:13 +080017 <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/>
Ashwini Orugantie178c242020-03-18 15:46:39 -070018 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
Kean Mariottif9969f72023-06-09 12:53:23 +000019 <!-- Allow the test to connect to perfetto trace processor -->
20 <uses-permission android:name="android.permission.INTERNET"/>
arthurhungdc1d3592020-09-30 17:39:21 +080021 <!-- Enable / Disable tracing !-->
22 <uses-permission android:name="android.permission.DUMP" />
Kean Mariottif9969f72023-06-09 12:53:23 +000023 <application android:networkSecurityConfig="@xml/network_security_config">
Ashwini Orugantie178c242020-03-18 15:46:39 -070024 <activity android:name="TaskOrganizerMultiWindowTest"
25 android:label="TaskOrganizer MW Test"
arthurhungdc1d3592020-09-30 17:39:21 +080026 android:exported="true"
27 android:excludeFromRecents="true">
Robert Carr00c0dbe2020-01-24 15:30:24 -080028 <intent-filter>
29 <action android:name="android.intent.action.MAIN"/>
30 <category android:name="android.intent.category.LAUNCHER"/>
31 </intent-filter>
32 </activity>
arthurhungdc1d3592020-09-30 17:39:21 +080033 <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 Carr8a2f9132019-11-11 15:03:15 -080053 </application>
arthurhungdc1d3592020-09-30 17:39:21 +080054 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
55 android:targetPackage="com.android.test.taskembed"
56 android:label="TaskOrganizerTest">
57 </instrumentation>
Robert Carr8a2f9132019-11-11 15:03:15 -080058</manifest>