mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
1be29abab2
This is a follow up change of I90ffbde0 Bug: 5023981 Change-Id: I3a6b862d05f5f907dee954cd6d6fee983b20ab5e
37 lines
886 B
Plaintext
37 lines
886 B
Plaintext
-keep class com.android.inputmethod.latin.BinaryDictionary {
|
|
int mDictLength;
|
|
<init>(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.Suggest {
|
|
<init>(...);
|
|
com.android.inputmethod.latin.SuggestedWords getSuggestions(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.UserBigramDictionary {
|
|
void setDatabaseMax(int);
|
|
void setDatabaseDelete(int);
|
|
void waitUntilUpdateDBDone();
|
|
void waitForDictionaryLoading();
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.AutoCorrection {
|
|
java.lang.CharSequence getAutoCorrectionWord();
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.Utils {
|
|
boolean equalsIgnoreCase(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellChecker {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.SettingsActivity {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.inputmethod.keyboard.internal.MiniKeyboardBuilder$MiniKeyboardParams {
|
|
<init>(...);
|
|
}
|