Android Autofill: Enable keyboard inline autofill suggestions

upstream-sync
Sebastian Kaspari 3 years ago committed by mergify[bot]
parent 3d33a9422c
commit b04eeccf14

@ -264,6 +264,9 @@
<intent-filter>
<action android:name="android.service.autofill.AutofillService"/>
</intent-filter>
<meta-data
android:name="android.autofill"
android:resource="@xml/autofill_configuration" />
</service>
<service android:name=".media.MediaSessionService"

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<autofill-service
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:supportsInlineSuggestions="true"
tools:targetApi="r" />
Loading…
Cancel
Save