• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-->
13
14<manifest xmlns:android="http://schemas.android.com/apk/res/android"
15     package="com.android.test.taskembed">
16    <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
17    <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/>
18    <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
19    <!-- Enable / Disable tracing !-->
20    <uses-permission android:name="android.permission.DUMP" />
21    <application>
22      <activity android:name="TaskOrganizerMultiWindowTest"
23           android:label="TaskOrganizer MW Test"
24           android:exported="true"
25           android:excludeFromRecents="true">
26        <intent-filter>
27          <action android:name="android.intent.action.MAIN"/>
28          <category android:name="android.intent.category.LAUNCHER"/>
29        </intent-filter>
30      </activity>
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>
51    </application>
52    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
53                     android:targetPackage="com.android.test.taskembed"
54                     android:label="TaskOrganizerTest">
55    </instrumentation>
56</manifest>
57