Bug: 146453536 Test: manual verification Change-Id: I833786992ecd183cdc20bc1f193f8726e01dedc8
19 lines
656 B
XML
19 lines
656 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>
|
|
</application>
|
|
</manifest>
|
|
|