Files
android_development/samples/InlineFillService/AndroidManifest.xml
Feng Cao c7ed6af6be Sample app: Use authentication instead of inline actions
Test: manual
Bug: 150499490

Change-Id: Ifc827cd1d633bf26a3450c392cc7da1211d02cfa
2020-03-18 14:16:20 -07:00

28 lines
966 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"/>
<activity
android:name=".SettingsActivity"
android:label="Autofill Settings"
android:exported="true"/>
</application>
</manifest>