blob: b18048da71356cd938a1a3722a0fb0baeda9b433 [file] [log] [blame]
Felipe Lemee5904392017-01-13 09:42:13 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2017 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.autofillservice.cts" >
19
Felipe Leme5af106d2017-02-27 11:14:11 -080020
Felipe Lemee5904392017-01-13 09:42:13 -080021 <application>
Felipe Leme5af106d2017-02-27 11:14:11 -080022 <activity android:name=".LoginActivity" >
Felipe Lemee3592542017-02-14 08:53:55 -080023 <intent-filter>
24 <!-- This intent filter is not really needed by CTS, but it maks easier to launch
Felipe Leme5af106d2017-02-27 11:14:11 -080025 this app during CTS development... -->
Felipe Lemee3592542017-02-14 08:53:55 -080026 <action android:name="android.intent.action.MAIN" />
27 <category android:name="android.intent.category.LAUNCHER" />
28 </intent-filter>
29 </activity>
Felipe Leme5af106d2017-02-27 11:14:11 -080030 <activity android:name=".WelcomeActivity"/>
Philip P. Moltmann79921032017-02-16 14:16:43 -080031 <activity android:name=".ViewAttributesTestActivity" />
Svet Ganov2fe5d452017-02-20 00:35:23 -080032 <activity android:name=".AuthenticationActivity" />
Felipe Leme5af106d2017-02-27 11:14:11 -080033 <activity android:name=".CheckoutActivity"/>
34 <activity android:name=".InitializedCheckoutActivity" />
35 <activity android:name=".DatePickerCalendarActivity" />
36 <activity android:name=".DatePickerSpinnerActivity" />
37 <activity android:name=".TimePickerClockActivity" />
38 <activity android:name=".TimePickerSpinnerActivity" />
Felipe Lemef8e34b72017-03-06 13:01:14 -080039 <activity android:name=".FatActivity" />
Felipe Leme98dfb402017-03-08 16:15:44 -080040 <activity android:name=".VirtualContainerActivity" >
41 <intent-filter>
42 <!-- This intent filter is not really needed by CTS, but it maks easier to launch
43 this app during CTS development... -->
44 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.LAUNCHER" />
46 </intent-filter>
47 </activity>
Felipe Leme22142812017-02-22 16:48:36 -080048
Felipe Lemee5904392017-01-13 09:42:13 -080049 <service
50 android:name=".InstrumentedAutoFillService"
51 android:label="InstrumentedAutoFillService"
Felipe Lemef9cba222017-03-06 17:20:21 -080052 android:permission="android.permission.BIND_AUTOFILL" >
Felipe Lemee5904392017-01-13 09:42:13 -080053 <intent-filter>
Felipe Lemef9cba222017-03-06 17:20:21 -080054 <action android:name="android.service.autofill.AutofillService" />
Felipe Lemee5904392017-01-13 09:42:13 -080055 </intent-filter>
56 </service>
57 </application>
58
59 <instrumentation
60 android:name="android.support.test.runner.AndroidJUnitRunner"
61 android:label="CTS tests for the AutoFill Framework APIs."
62 android:targetPackage="android.autofillservice.cts" >
63 </instrumentation>
64
Philip P. Moltmann79921032017-02-16 14:16:43 -080065</manifest>