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 20 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 21 22 <application> 23 <activity android:name=".LoginActivity" > 24 <intent-filter> 25 <!-- This intent filter is not really needed by CTS, but it maks easier to launch 26 this app during CTS development... --> 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=".PreFilledLoginActivity" /> 32 <activity android:name=".WelcomeActivity"/> 33 <activity android:name=".ViewAttributesTestActivity" /> 34 <activity android:name=".AuthenticationActivity" /> 35 <activity android:name=".ManualAuthenticationActivity" /> 36 <activity android:name=".CheckoutActivity"/> 37 <activity android:name=".InitializedCheckoutActivity" /> 38 <activity android:name=".DatePickerCalendarActivity" /> 39 <activity android:name=".DatePickerSpinnerActivity" /> 40 <activity android:name=".TimePickerClockActivity" /> 41 <activity android:name=".TimePickerSpinnerActivity" /> 42 <activity android:name=".FatActivity" /> 43 <activity android:name=".VirtualContainerActivity"> 44 <intent-filter> 45 <!-- This intent filter is not really needed by CTS, but it maks easier to launch 46 this app during CTS development... --> 47 <action android:name="android.intent.action.MAIN" /> 48 <category android:name="android.intent.category.LAUNCHER" /> 49 </intent-filter> 50 </activity> 51 <activity android:name=".OptionalSaveActivity" /> 52 <activity android:name=".AllAutofillableViewsActivity" /> 53 <activity android:name=".GridActivity" > 54 <intent-filter> 55 <!-- This intent filter is not really needed by CTS, but it maks easier to launch 56 this app during CTS development... --> 57 <action android:name="android.intent.action.MAIN" /> 58 <category android:name="android.intent.category.LAUNCHER" /> 59 </intent-filter> 60 </activity> 61 <activity android:name=".EmptyActivity"/> 62 <activity android:name=".DummyActivity"/> 63 <activity android:name=".OutOfProcessLoginActivity" 64 android:process="android.autofillservice.cts.outside"/> 65 <activity android:name=".FragmentContainerActivity" /> 66 67 <service 68 android:name=".InstrumentedAutoFillService" 69 android:label="InstrumentedAutoFillService" 70 android:permission="android.permission.BIND_AUTOFILL_SERVICE" > 71 <intent-filter> 72 <action android:name="android.service.autofill.AutofillService" /> 73 </intent-filter> 74 </service> 75 </application> 76 77 <instrumentation 78 android:name="android.support.test.runner.AndroidJUnitRunner" 79 android:label="CTS tests for the AutoFill Framework APIs." 80 android:targetPackage="android.autofillservice.cts" > 81 </instrumentation> 82 83 </manifest> 84