Adam He | 87a8075 | 2019-12-03 14:32:09 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Joanne Chung | e48202f | 2020-06-03 17:29:52 +0800 | [diff] [blame] | 2 | package="com.example.android.inlinefillservice" > |
| 3 | <application |
| 4 | android:label="@string/app_name"> |
Adam He | 87a8075 | 2019-12-03 14:32:09 -0800 | [diff] [blame] | 5 | <service |
| 6 | android:name=".InlineFillService" |
| 7 | android:label="Inline Fill Service" |
Joanne Chung | d182ec9 | 2020-08-03 20:40:22 +0800 | [diff] [blame] | 8 | android:exported="true" |
Adam He | 87a8075 | 2019-12-03 14:32:09 -0800 | [diff] [blame] | 9 | android:permission="android.permission.BIND_AUTOFILL_SERVICE"> |
| 10 | <intent-filter> |
| 11 | <action android:name="android.service.autofill.AutofillService" /> |
| 12 | </intent-filter> |
| 13 | <meta-data |
| 14 | android:name="android.autofill" |
| 15 | android:resource="@xml/autofill_service_config"> |
| 16 | </meta-data> |
| 17 | </service> |
Adam He | 62dfb3a | 2020-02-04 12:48:31 -0800 | [diff] [blame] | 18 | |
| 19 | <activity |
| 20 | android:name=".AuthActivity" |
| 21 | android:taskAffinity=".AuthActivity" |
Feng Cao | 8f41686 | 2020-03-03 19:07:17 -0800 | [diff] [blame] | 22 | android:label="Autofill Authentication"/> |
| 23 | |
| 24 | <activity |
| 25 | android:name=".SettingsActivity" |
| 26 | android:label="Autofill Settings" |
| 27 | android:exported="true"/> |
Feng Cao | 0c50113 | 2020-04-27 16:30:59 -0700 | [diff] [blame] | 28 | |
Ahaan Ugale | d3e91dd | 2021-02-28 22:12:18 -0800 | [diff] [blame] | 29 | <activity |
| 30 | android:name=".PasswordsActivity" |
| 31 | android:label="Saved Passwords" |
| 32 | android:exported="true"/> |
| 33 | |
Feng Cao | 0c50113 | 2020-04-27 16:30:59 -0700 | [diff] [blame] | 34 | <activity android:name=".AttributionDialogActivity" |
| 35 | android:label="Autofill Attribution" |
| 36 | android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/> |
Adam He | 87a8075 | 2019-12-03 14:32:09 -0800 | [diff] [blame] | 37 | </application> |
| 38 | </manifest> |