Files
android_development/samples/InlineFillService/AndroidManifest.xml
Joanne Chung e48202f01c Follow sample code package-name convention for InlineFillService.
Bug: 155135358
Test: Manual. Install the application and dumpsys to check package
name.

Change-Id: Ifc338e40e6a2d37b775f6a60664231c2ce248eff
2020-06-03 17:34:22 +08:00

33 lines
1.2 KiB
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.inlinefillservice" >
<application
android:label="@string/app_name">
<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"/>
<activity android:name=".AttributionDialogActivity"
android:label="Autofill Attribution"
android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/>
</application>
</manifest>