1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2018 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 *      http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16-->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18    package="android.contentcaptureservice.cts"
19    android:targetSandboxVersion="2">
20
21    <application>
22
23        <uses-library android:name="android.test.runner" />
24
25        <activity android:name=".BlankActivity"
26                  android:label="Blank"
27                  android:taskAffinity=".BlankActivity"
28                  android:theme="@android:style/Theme.NoTitleBar">
29            <intent-filter>
30                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
31                     this app during CTS development... -->
32                <action android:name="android.intent.action.MAIN" />
33                <category android:name="android.intent.category.LAUNCHER" />
34            </intent-filter>
35        </activity>
36        <activity android:name=".BlankWithTitleActivity"
37                  android:label="Blanka"
38                  android:taskAffinity=".BlankWithTitleActivity">
39            <intent-filter>
40                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
41                     this app during CTS development... -->
42                <action android:name="android.intent.action.MAIN" />
43                <category android:name="android.intent.category.LAUNCHER" />
44            </intent-filter>
45        </activity>
46        <activity android:name=".LoginActivity"
47                  android:label="Login"
48                  android:taskAffinity=".LoginActivity"
49                  android:theme="@android:style/Theme.NoTitleBar">
50            <intent-filter>
51                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
52                     this app during CTS development... -->
53                <action android:name="android.intent.action.MAIN" />
54                <category android:name="android.intent.category.LAUNCHER" />
55            </intent-filter>
56        </activity>
57        <activity android:name=".ChildlessActivity"
58                  android:label="Childless"
59                  android:taskAffinity=".ChildlessActivity"
60                  android:theme="@android:style/Theme.NoTitleBar">
61            <intent-filter>
62                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
63                     this app during CTS development... -->
64                <action android:name="android.intent.action.MAIN" />
65                <category android:name="android.intent.category.LAUNCHER" />
66            </intent-filter>
67        </activity>
68        <activity android:name=".CustomViewActivity"
69                  android:label="CustomView"
70                  android:taskAffinity=".CustomViewActivity"
71                  android:theme="@android:style/Theme.NoTitleBar">
72            <intent-filter>
73                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
74                     this app during CTS development... -->
75                <action android:name="android.intent.action.MAIN" />
76                <category android:name="android.intent.category.LAUNCHER" />
77            </intent-filter>
78        </activity>
79
80        <activity android:name=".OutOfProcessActivity"
81                  android:label="Oop"
82                  android:taskAffinity=".OutOfProcessActivity"
83                  android:theme="@android:style/Theme.NoTitleBar"
84                  android:process="android.contentcapture.cts.outside">
85            <intent-filter>
86                <!-- This intent filter is not really needed by CTS, but it makes easier to launch
87                     this app during CTS development... -->
88                <action android:name="android.intent.action.MAIN" />
89                <category android:name="android.intent.category.LAUNCHER" />
90            </intent-filter>
91        </activity>
92
93        <receiver android:name=".SelfDestructReceiver"
94            android:exported="true"
95            android:process="android.contentcapture.cts.outside"/>
96
97        <service
98            android:name=".CtsContentCaptureService"
99            android:label="CtsContentCaptureService"
100            android:permission="android.permission.BIND_CONTENT_CAPTURE_SERVICE">
101            <intent-filter>
102                <action android:name="android.service.contentcapture.ContentCaptureService" />
103            </intent-filter>
104        </service>
105
106    </application>
107
108    <instrumentation
109        android:name="androidx.test.runner.AndroidJUnitRunner"
110        android:label="CTS tests for the AutoFill Framework APIs."
111        android:targetPackage="android.contentcaptureservice.cts" >
112    </instrumentation>
113
114</manifest>
115