blob: 8dc06d5c9e081d39497ab3c40cb9f6708b0a5c45 [file] [log] [blame]
Feng Cao6d191942019-11-20 19:46:02 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.example.android.autofillkeyboard">
3 <application
4 android:icon="@drawable/ic_launcher"
5 android:label="@string/app_name"
6 android:theme="@android:style/Theme.Material.Light">
7 <service
8 android:name="AutofillImeService"
9 android:label="@string/app_name"
10 android:permission="android.permission.BIND_INPUT_METHOD">
11 <intent-filter>
12 <action android:name="android.view.InputMethod" />
13 </intent-filter>
14 <meta-data android:name="android.view.im" android:resource="@xml/method" />
15 </service>
16 </application>
17</manifest>