blob: 1f1bd3ef7d8125b574bb5ca53a06f74b561b7fdf [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"/>
arthurhungdc1d3592020-09-30 17:39:21 +080019 <!-- Enable / Disable tracing !-->
20 <uses-permission android:name="android.permission.DUMP" />
Diwas Sharma706df9c2023-09-01 00:45:16 +000021 <application>
Ashwini Orugantie178c242020-03-18 15:46:39 -070022 <activity android:name="TaskOrganizerMultiWindowTest"
23 android:label="TaskOrganizer MW Test"
arthurhungdc1d3592020-09-30 17:39:21 +080024 android:exported="true"
25 android:excludeFromRecents="true">
Robert Carr00c0dbe2020-01-24 15:30:24 -080026 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 <category android:name="android.intent.category.LAUNCHER"/>
29 </intent-filter>
30 </activity>
arthurhungdc1d3592020-09-30 17:39:21 +080031 <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 Carr8a2f9132019-11-11 15:03:15 -080051 </application>
arthurhungdc1d3592020-09-30 17:39:21 +080052 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
53 android:targetPackage="com.android.test.taskembed"
54 android:label="TaskOrganizerTest">
55 </instrumentation>
Robert Carr8a2f9132019-11-11 15:03:15 -080056</manifest>