blob: fa002f1efdd46b96aa0f2a7b1ed488cb99d75d85 [file] [log] [blame]
Adam He87a80752019-12-03 14:32:09 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Joanne Chunge48202f2020-06-03 17:29:52 +08002 package="com.example.android.inlinefillservice" >
3 <application
4 android:label="@string/app_name">
Adam He87a80752019-12-03 14:32:09 -08005 <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 He62dfb3a2020-02-04 12:48:31 -080017
18 <activity
19 android:name=".AuthActivity"
20 android:taskAffinity=".AuthActivity"
Feng Cao8f416862020-03-03 19:07:17 -080021 android:label="Autofill Authentication"/>
22
23 <activity
24 android:name=".SettingsActivity"
25 android:label="Autofill Settings"
26 android:exported="true"/>
Feng Cao0c501132020-04-27 16:30:59 -070027
28 <activity android:name=".AttributionDialogActivity"
29 android:label="Autofill Attribution"
30 android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/>
Adam He87a80752019-12-03 14:32:09 -080031 </application>
32</manifest>