1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2    package="com.example.android.inlinefillservice" >
3    <application
4        android:label="@string/app_name">
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>
17
18        <activity
19            android:name=".AuthActivity"
20            android:taskAffinity=".AuthActivity"
21            android:label="Autofill Authentication"/>
22
23        <activity
24            android:name=".SettingsActivity"
25            android:label="Autofill Settings"
26            android:exported="true"/>
27
28        <activity android:name=".AttributionDialogActivity"
29                  android:label="Autofill Attribution"
30                  android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/>
31    </application>
32</manifest>
33