Files
android_development/samples/InlineFillService/AndroidManifest.xml
Adam He 87a8075963 Inline Fill Service for demo.
Bug: 137800469
Test: manual verification
Change-Id: I44464649dc64f26823461b2bc54dd64440471d61
2020-01-02 08:32:29 -08:00

19 lines
654 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar.fill" >
<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>
</application>
</manifest>