Files
android_development/samples/InlineFillService/AndroidManifest.xml
Adam He 62dfb3ae4e Added auth activities for inline fill service.
This CL adds functionality to test both response and dataset
authentication using the inline fill service. Setting either
mAuthenticateResponses or mAuthenticateDatasets will test either
functionality.

Bug: 148815880
Test: manual verification
Change-Id: Ifb734c4fd8d5ef38dd4c6c9d4b493c80abbde305
2020-02-12 14:50:50 -08:00

24 lines
820 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar.inline" >
<application>
<service
android:name=".InlineFillService"
android:label="Inline Fill Service"
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
<intent-filter>
<action android:name="android.service.autofill.AutofillService" />
</intent-filter>
<meta-data
android:name="android.autofill"
android:resource="@xml/autofill_service_config">
</meta-data>
</service>
<activity
android:name=".AuthActivity"
android:taskAffinity=".AuthActivity"
android:label="Autofill Authentication" />
</application>
</manifest>