Felipe Leme | e590439 | 2017-01-13 09:42:13 -0800 | [diff] [blame] | 1 | <?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 Leme | 5af106d | 2017-02-27 11:14:11 -0800 | [diff] [blame] | 20 | |
Felipe Leme | e590439 | 2017-01-13 09:42:13 -0800 | [diff] [blame] | 21 | <application> |
Felipe Leme | 5af106d | 2017-02-27 11:14:11 -0800 | [diff] [blame] | 22 | <activity android:name=".LoginActivity" > |
Felipe Leme | e359254 | 2017-02-14 08:53:55 -0800 | [diff] [blame] | 23 | <intent-filter> |
| 24 | <!-- This intent filter is not really needed by CTS, but it maks easier to launch |
Felipe Leme | 5af106d | 2017-02-27 11:14:11 -0800 | [diff] [blame] | 25 | this app during CTS development... --> |
Felipe Leme | e359254 | 2017-02-14 08:53:55 -0800 | [diff] [blame] | 26 | <action android:name="android.intent.action.MAIN" /> |
| 27 | <category android:name="android.intent.category.LAUNCHER" /> |
| 28 | </intent-filter> |
| 29 | </activity> |
Felipe Leme | 5af106d | 2017-02-27 11:14:11 -0800 | [diff] [blame] | 30 | <activity android:name=".WelcomeActivity"/> |
Philip P. Moltmann | 7992103 | 2017-02-16 14:16:43 -0800 | [diff] [blame] | 31 | <activity android:name=".ViewAttributesTestActivity" /> |
Svet Ganov | 2fe5d45 | 2017-02-20 00:35:23 -0800 | [diff] [blame] | 32 | <activity android:name=".AuthenticationActivity" /> |
Felipe Leme | 5af106d | 2017-02-27 11:14:11 -0800 | [diff] [blame] | 33 | <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 Leme | f8e34b7 | 2017-03-06 13:01:14 -0800 | [diff] [blame] | 39 | <activity android:name=".FatActivity" /> |
Felipe Leme | 98dfb40 | 2017-03-08 16:15:44 -0800 | [diff] [blame] | 40 | <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 Leme | 2214281 | 2017-02-22 16:48:36 -0800 | [diff] [blame] | 48 | |
Felipe Leme | e590439 | 2017-01-13 09:42:13 -0800 | [diff] [blame] | 49 | <service |
| 50 | android:name=".InstrumentedAutoFillService" |
| 51 | android:label="InstrumentedAutoFillService" |
Felipe Leme | f9cba22 | 2017-03-06 17:20:21 -0800 | [diff] [blame^] | 52 | android:permission="android.permission.BIND_AUTOFILL" > |
Felipe Leme | e590439 | 2017-01-13 09:42:13 -0800 | [diff] [blame] | 53 | <intent-filter> |
Felipe Leme | f9cba22 | 2017-03-06 17:20:21 -0800 | [diff] [blame^] | 54 | <action android:name="android.service.autofill.AutofillService" /> |
Felipe Leme | e590439 | 2017-01-13 09:42:13 -0800 | [diff] [blame] | 55 | </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. Moltmann | 7992103 | 2017-02-16 14:16:43 -0800 | [diff] [blame] | 65 | </manifest> |