1<?xml version="1.0" encoding="UTF-8"?><!-- 2 Copyright 2017 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16<manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 package="com.example.android.autofill.app" 18 android:versionCode="1" 19 android:versionName="1.0"> 20 21 <uses-permission android:name="android.permission.INTERNET"/> 22 23 <application 24 android:allowBackup="true" 25 android:icon="@mipmap/ic_launcher" 26 android:label="@string/app_name" 27 android:supportsRtl="true" 28 android:theme="@style/Theme.AppCompat.Light"> 29 <activity 30 android:name="com.example.android.autofill.app.MainActivity" 31 android:taskAffinity=".MainActivity"> 32 <intent-filter> 33 <action android:name="android.intent.action.MAIN" /> 34 35 <category android:name="android.intent.category.LAUNCHER" /> 36 </intent-filter> 37 </activity> 38 <activity 39 android:name="com.example.android.autofill.app.StandardSignInActivity" 40 android:taskAffinity=".StandardSignInActivity" /> 41 <activity 42 android:name="com.example.android.autofill.app.StandardAutoCompleteSignInActivity" 43 android:taskAffinity=".StandardAutoCompleteSignInActivity" /> 44 <activity 45 android:name="com.example.android.autofill.app.VirtualSignInActivity" 46 android:taskAffinity=".VirtualSignInActivity" /> 47 <activity android:name="com.example.android.autofill.app.WelcomeActivity" /> 48 <activity 49 android:name="com.example.android.autofill.app.CreditCardActivity" 50 android:taskAffinity=".CreditCardActivity" /> 51 <activity 52 android:name="com.example.android.autofill.app.CreditCardSpinnersActivity" 53 android:taskAffinity=".CreditCardSpinnersActivity" /> 54 <activity 55 android:name="com.example.android.autofill.app.EmailComposeActivity" 56 android:taskAffinity=".EmailComposeActivity" /> 57 <activity 58 android:name="com.example.android.autofill.app.CreditCardCompoundViewActivity" 59 android:taskAffinity=".CreditCardCompoundViewActivity" /> 60 <activity 61 android:name="com.example.android.autofill.app.CreditCardDatePickerActivity" 62 android:taskAffinity=".CreditCardDatePickerActivity" /> 63 <activity 64 android:name="com.example.android.autofill.app.CreditCardAntiPatternActivity" 65 android:taskAffinity=".CreditCardAntiPatternActivity" /> 66 <activity 67 android:name="com.example.android.autofill.app.MultiplePartitionsActivity" 68 android:taskAffinity=".MultiplePartitionsActivity" 69 android:theme="@style/Theme.AppCompat.Light.NoActionBar" /> 70 <activity 71 android:name="com.example.android.autofill.app.WebViewSignInActivity" 72 android:taskAffinity=".WebViewSignInActivity" /> 73 </application> 74 75</manifest> 76