* refactor the autofill provider code * keyboard now uses wrap_content when inflating Test: manual Bug: 154178486 Change-Id: Ie540178d8f063e3a8e9afb76284b15ab40ada344
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
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"/>
|
|
|
|
<activity android:name=".AttributionDialogActivity"
|
|
android:label="Autofill Attribution"
|
|
android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar"/>
|
|
</application>
|
|
</manifest>
|