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" |
| 8 | android:permission="android.permission.BIND_AUTOFILL_SERVICE"> |
| 9 | <intent-filter> |
| 10 | <action android:name="android.service.autofill.AutofillService" /> |
| 11 | </intent-filter> |
| 12 | <meta-data |
| 13 | android:name="android.autofill" |
| 14 | android:resource="@xml/autofill_service_config"> |
| 15 | </meta-data> |
| 16 | </service> |
Adam He | 62dfb3a | 2020-02-04 12:48:31 -0800 | [diff] [blame] | 17 | |
| 18 | <activity |
| 19 | android:name=".AuthActivity" |
| 20 | android:taskAffinity=".AuthActivity" |
Feng Cao | 8f41686 | 2020-03-03 19:07:17 -0800 | [diff] [blame] | 21 | android:label="Autofill Authentication"/> |
| 22 | |
| 23 | <activity |
| 24 | android:name=".SettingsActivity" |
| 25 | android:label="Autofill Settings" |
| 26 | android:exported="true"/> |
Feng Cao | 0c50113 | 2020-04-27 16:30:59 -0700 | [diff] [blame] | 27 | |
| 28 | <activity android:name=".AttributionDialogActivity" |
| 29 | android:label="Autofill Attribution" |
| 30 | android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/> |
Adam He | 87a8075 | 2019-12-03 14:32:09 -0800 | [diff] [blame] | 31 | </application> |
| 32 | </manifest> |