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
24 lines
820 B
XML
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>
|
|
|