|
16 | 16 |
|
17 | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
18 | 18 | coreApp="true" |
19 | | - package="org.dslul.openboard.inputmethod.latin"> |
| 19 | + package="io.github.sds100.keymapper.inputmethod.latin"> |
20 | 20 |
|
21 | 21 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
22 | 22 | <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> |
|
28 | 28 | To use this, add the following line into calling application's AndroidManifest.xml |
29 | 29 | <pre> |
30 | 30 | {@code |
31 | | - <uses-permission android:name="org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT"/> |
| 31 | + <uses-permission android:name="io.github.sds100.keymapper.inputmethod.latin.HIDE_SOFT_INPUT"/> |
32 | 32 | } |
33 | 33 | </pre> |
34 | 34 | then call {@link android.content.Context#sendBroadcast(Intent)} as follows: |
35 | 35 | <pre> |
36 | 36 | {@code |
37 | | - sendBroadcast(new Intent("org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT") |
38 | | - .setPackage("org.dslul.openboard.inputmethod.latin")); |
| 37 | + sendBroadcast(new Intent("io.github.sds100.keymapper.inputmethod.latin.HIDE_SOFT_INPUT") |
| 38 | + .setPackage("io.github.sds100.keymapper.inputmethod.latin")); |
39 | 39 | } |
40 | 40 | </pre> --> |
41 | | - <permission android:name="org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT" |
| 41 | + <permission android:name="io.github.sds100.keymapper.inputmethod.latin.HIDE_SOFT_INPUT" |
42 | 42 | android:protectionLevel="signature" /> |
43 | 43 |
|
44 | 44 | <application android:label="@string/english_ime_name" |
|
131 | 131 |
|
132 | 132 | <receiver android:name="DictionaryPackInstallBroadcastReceiver" android:exported="false"> |
133 | 133 | <intent-filter> |
134 | | - <action android:name="org.dslul.openboard.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT" /> |
| 134 | + <action android:name="io.github.sds100.keymapper.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT" /> |
135 | 135 | </intent-filter> |
136 | 136 | </receiver> |
137 | 137 |
|
138 | 138 | <!-- Content providers --> |
139 | | - <provider android:name="org.dslul.openboard.inputmethod.dictionarypack.DictionaryProvider" |
| 139 | + <provider android:name="io.github.sds100.keymapper.inputmethod.dictionarypack.DictionaryProvider" |
140 | 140 | android:grantUriPermissions="true" |
141 | 141 | android:exported="false" |
142 | 142 | android:authorities="@string/authority" |
|
0 commit comments