Feng Cao | 6d19194 | 2019-11-20 19:46:02 -0800 | [diff] [blame] | 1 | <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> |