mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
e55996373f
Change-Id: I87344f071e982dfc37b17553c5a7054e26009cc7
33 lines
773 B
Plaintext
33 lines
773 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 {
|
|
*;
|
|
}
|