Skip to content

Commit a630a5f

Browse files
author
Rhed Jao
committed
Declaring package visibility needs for LatinIME
Bug: 179783492 Bug: 179783499 Bug: 216823971 Test: atest LatinIMETests Change-Id: I309ffefe261049a5d3abce8e16829cd66f9123dc
1 parent 9415f52 commit a630a5f

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

java/AndroidManifest.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@
5454
<permission android:name="com.android.inputmethod.latin.HIDE_SOFT_INPUT"
5555
android:protectionLevel="signature"/>
5656

57+
<!-- To query enabled input methods. -->
58+
<queries>
59+
<intent>
60+
<action android:name="android.view.InputMethod" />
61+
</intent>
62+
</queries>
63+
5764
<application android:label="@string/english_ime_name"
5865
android:icon="@drawable/ic_launcher_keyboard"
5966
android:supportsRtl="true"
@@ -65,7 +72,8 @@
6572
<service android:name="LatinIME"
6673
android:label="@string/english_ime_name"
6774
android:permission="android.permission.BIND_INPUT_METHOD"
68-
android:exported="true">
75+
android:exported="true"
76+
android:visibleToInstantApps="true">
6977
<intent-filter>
7078
<action android:name="android.view.InputMethod"/>
7179
</intent-filter>

0 commit comments

Comments
 (0)