Files
android_development/samples/AutofillKeyboard/AndroidManifest.xml
Feng Cao 6d191940c2 Add initial sample IME code for autofill keyboard.
* This is just a skeleton IME with a very simple UI, no actual autofill related code is added yet.

Test: manual - build using m -j AutofillKeyboard, and install with adb sync

Change-Id: I8b22532646fc61af9e9c944f8db11ca1702b008f
2019-11-21 23:09:16 -08:00

18 lines
730 B
XML
Executable File

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.autofillkeyboard">
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Material.Light">
<service
android:name="AutofillImeService"
android:label="@string/app_name"
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method" />
</service>
</application>
</manifest>