18 lines
730 B
XML
Executable File
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>
|